0115 | How to install Xcache

วันนี้ ว่างๆไม่รู้จะเขียนอะไร เลยมาเขียนแนะนำวิธีติดตั้ง xcache กันครับ

พิมพ์ตามไปทีละบรรทัด เดี๋ยวก็ดีเอง? มาเริ่มเลยแล้วกัน

[sourcecode language=”plain”]
wget http://xcache.lighttpd.net/pub/Releases/1.3.0/xcache-1.3.0.tar.gz
tar xzf xcache-1.3.0.tar.gz
cd xcache-1.3.0
phpize
./configure –enable-xcache –enable-xcache-optimizer
make install clean
cat xcache.ini >> /usr/local/lib/php.ini
[/sourcecode]
หลังจากนั้น เอาบรรทัดด้านล่างนี้ เพิ่มก่อนที่จะโหลด ioncube ไว้ใน [zend]
[sourcecode language=”plain”]
zend_extension =/usr/local/lib/php/extensions/no-debug-non-zts-20060613/xcache.so
[/sourcecode]
แล้วลบบรรทัดใน section [xcache-common] ออกให้หมด แล้วแก้ค่าใน section [xcache] ให้เหมาะสม
[sourcecode language=”plain”]
xcache.size = 32M
xcache.count = 4 ;จำนวน core cpu
xcache.optimizer On
[/sourcecode]
หลังจากนั้นก็ restart apache ก็เป็นอันเสร็จครับ

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *