up vote 2 down vote favorite
1
share [g+] share [fb]

I'm running a LAMP box with PHP running as fcgid. APC is installed and working well. However, each PHP process gets its own cache. This is a problem, because it would make far more sense to have 10 PHP processes with 300MB shared APC cache than 10 PHP processes, each with a redundant 30MB unshared APC cache.

There was a prior thread on this topic 8 months ago (http://stackoverflow.com/questions/598444/how-to-share-apc-cache-between-several-php-processes-when-running-under-fastcgi) and I am wondering if there have been any developments in this realm since then.

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

As far as I know it's still not possible to use shared memory cache with any PHP cacher amongst multiple processes... anyway, unless you're under extremely heavy load you should be fine with separate caches, I suppose, since they'll be filled pretty quickly. And hey, RAM is cheap nowadays!

link|improve this answer
Because of this problem I can cache N*30 MB fewer megabytes worth of opcode, where N is the number of fcgid/PHP processes. Instead of caching my most commonly used files N times, I'd rather cache N times as many files to hit the disk even less. The reason I care is that we're under heavy load ;-) RAM is cheap, not free! – jpp Dec 3 '09 at 20:42
feedback

It turns out that this is still not possible if you are truly using different processes: http://pecl.php.net/bugs/bug.php?id=11988 (updated 11/13/2009 by the author of the relevant portion of APC).

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.