I read this article: http://www.mysqlperformanceblog.com/2006/09/27/apc-or-memcached/ from way back when.. I want to get the best caching engine available so that my application is really fast. Of course I don't want to over-cache but I want to at least choose the best thing out there. In that article it says Memcached is slow and apc is fast so why is everyone choosing memcached?

http://framework.zend.com/manual/en/zend.cache.backends.html#zend.cache.backends.twolevels here is says "use a fast one (but limited) like Apc, Memcache... and a "slow" one like File, Sqlite..." do you think using Apc as the fast and Memcache as the slow is a good idea?

link|improve this question

46% accept rate
6  
BTW: you should use APC even if you don't use apc_store. Opcode cache alone makes PHP few times faster. – porneL Oct 14 '10 at 9:52
@porneL: what do you mean? Does APC increase PHP speed after just the installation, even if I don't add code to cache anything in my scripts? – Marco Demaio Apr 2 at 11:30
@Marco Demaio: Indeed. APC is mainly a PHP optimizer (optimizes by default as long as it's enabled), and apc_store() is just an extra bonus on top of that. – porneL Apr 2 at 21:16
feedback

5 Answers

Memcached is a distributed caching system, whereas APC is non-distributed - and mainly an opcode cache.

If (and only if) you have a web application which has to live on different webservers (loadbalancing), you have to use memcache for distributed caching. If not, just stick to APC and its cache.

You should always use an opcode cache, which APC is (also APC will get integrated into php6 iirc, so why not start using it now).

You can/should use both for different purposes.

link|improve this answer
Stunning answer +1. My question now is what's an opcode cache? – Marco Demaio Apr 2 at 11:20
feedback

Memcached if you need to preserve state across several web servers (if you're load balanced and it's important that what's in the cache is the same for all servers).

APC if you just need access to quick memory to read (& write) on a (or each) server.

Remember APC can also compile and speed up your script execution time. So you could for example be using APC for increased execution performance, while using memcached for cache storage.

link|improve this answer
feedback

Hey Thomaschaaf, I hope this is not tool late for you but please note that APC has some issues related to "user-cache". To make a long story short, when you set time-outs for cache entries, or if your apache crashes inside internal APC code (timeout, for example), then you may suffer some problems.

I have an entry about the issue here: http://nirlevy.blogspot.com/2009/06/apc-futexwait-lockdown-make-your-apache.html, and you should also read http://t3.dotgnu.info/blog/php/user-cache-timebomb.html (from one of the APC developers i think)

link|improve this answer
8  
I stumbled across this and wanted to update that it seems to have been addressed now (as it should, 2 years later!). Here's a closed bug report, for example: bugs.debian.org/cgi-bin/bugreport.cgi?bug=572529 – Encoderer Jul 6 '11 at 23:47
feedback

I use both one for speed and the other to sync all my servers. If you do use memcache then please do keep in mind of the open ports which you will need to block with iptables.

link|improve this answer
feedback

I use only APC since APC is a code cache and acts like memcache ! Only 1 config file instead of 2.

And only 1 place to monitor both cache.....

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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