Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

php accelerator review

1) Can you recommend me a PHP accelerator for PHP V5.2.6?
2) Do you know about any recent test comparation/review of those modules(Alternative PHP Cache, eAccelerator, XCache, Zend Optimizer, Zend Platform, ionCube PHP Accelerator, Turck MMCache, Nusphere PhpExpress)?

like image 661
dole doug Avatar asked Apr 06 '09 14:04

dole doug


3 Answers

APC — standard choice, included in PECL, comes prepackaged in most Linux distros, to be bundled in by default in PHP6. As a bonus it can serve as data cache (something like local memcache).

eAccelerator was popular, for some time it was the fastest bytecode cache. But the difference in speed is not enough to justify choosing it over APC.

Turck MMcache — dead. eAccelerator was forked from it.

ionCube — dead.

like image 94
vartec Avatar answered Sep 26 '22 03:09

vartec


APC is pretty much the standard choice. It's scheduled to be included in PHP 6 core. Unlike most of the other candidates, it's stable and it's free.

like image 30
troelskn Avatar answered Sep 22 '22 03:09

troelskn


Here is a comparison of three of them, APC, Zend and XCache:

http://blog.digitalstruct.com/2007/12/23/php-accelerators-apc-vs-zend-vs-xcache-with-zend-framework/

like image 37
karim79 Avatar answered Sep 25 '22 03:09

karim79