vote up 1 vote down star
2

Im doing research on which one of these to use and I can't really find one that stands out. Eaccelerator is faster than APC, but APC is better maintained. Xcache is faster but the others have easier syntax.

Anyone have recommendations on which to use and why?

Thanks

flag

eAccelerator doesn't look like it has seen a release in over a year. xcache's VC is certainly active, but I couldn't focus out releases and a focus either. It all boils down to a piece of software that is being maintained and APC wins it hands down. – Till May 31 at 0:30

5 Answers

vote up 8 vote down check

APC is going to be included in PHP 6, and I'd guess it has been chosen for good reason :)

It's fairly easy to install and certainly speeds things up.

link|flag
good point. apc it is. – Galen May 31 at 5:44
I've been weighing up these three and have decided to start testing with APC for this reason. The other two seem to have some stability issues too. – Steve Claridge Oct 15 at 8:30
I've seen stability issues with all of them, but settled for APC and any problems we've had with it we've been able to resolve. – xkcd150 Nov 2 at 10:51
I've only run into three issues with APC, all of which were things under my control. 1) Don't let APC fill up. Make sure to allocate enough memory 2) Don't use apc_clear_cache() on an active server 3) APC doesn't really cope well with heavy lock contention -- don't try to write to a single key from multiple processes simultaneously. – Frank Farmer 2 days ago
vote up 0 vote down

I think APC is the way to go unless you are using Zend Optimizer on the site. APC is incompatible with Zend Optimizer so in that case you will need to go with something like eAccelerator.

link|flag
vote up 1 vote down

APC definitely. It's written by the PHP guys, so even though it might not share the highest speeds, you can bet on the fact it's the highest quality.

Plus you get some other nifty features I use all the time (http://www.php.net/apc).

link|flag
Facebook is also a heavy user of APC -- they use gigabytes, if not terrabytes of APC cache. Many of the improvements they've made have been released back and integrated into the main version of APC. – Frank Farmer 2 days ago
You are thinking of memcached. – Evert yesterday
vote up 2 vote down

In the end I went with eAccelerator - the speed boost, the smaller memory footprint and the fact that is was very easy to install swayed me. It also has a nice web-based front end to clear the cache and provide some stats.

The fact that its not maintained anymore is not an issue for me - it works, and that's all I care about. In the future, if it breaks PHP6 (or whatever), then I'll re-evaluate my decision and probably go with APC simply because its been adopted by the PHP developers (so should be even easier to install)

link|flag
vote up 2 vote down

Check out benchmarks and comparisons:

here and here and there

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.