Yum up some packages:
yum install php-pear php-devel httpd-devel
Install APC using pear (the pear installer is smarter than the pecl installer):
When the installer asks about APXS, say ‘no’.Â
pear install pecl/apc
Tell PHP to load APC:
echo extension=apc.so > /etc/php.d/apc.ini
Restart Apache:
/sbin/service httpd graceful
Posted September 14, 2008 by Casey
Categories: Technology. Tags: apc, Centos, documentation, install, linux, php, rhel, system administration. 3 Comments.
I’ve been working on MySQL optimization for a while, and though there’s still more to done on that front, I’ve gotten to the point where the the cumulative query times make up less than half of the page generation time.
So I’m optimizing code when the solution is obvious (and I hope to rope Zach into [...]
Posted May 31, 2007 by Casey Bisson
Categories: Technology. Tags: acceleration, apc, caching, intermediate code cache, optimization, php, scaling, web applications, zend. 5 Comments.