安裝某些CMS套件在使用一段時間後,如drupal模組一多時,或不知怎麼一回事網站變的特別慢,套件提供cache也啟動了,但每次 request 就會感覺機器被吃了很多資源,此時我們可以試著利用了APC(Alternative PHP Cache),來改善執行 PHP 的速度!
1.首先安裝相關php套件
yum install php-pear php-devel httpd-devel pcre-devel gcc make
2.Install APC Using PECL
pecl install apc
3.設定php for apc 參數
如 /etc/php.d/apc.ini
加入 extension=apc.so
4.Restart Apache Service for APC
service httpd restart
發佈留言