php緩存加速軟件種類php
xcachemysql
eacceleratorsql
Zend數據庫
apc
緩存
eaccelerator具備緩存,加速,優化的特色
分佈式
設置字符集
ide
echo 'export LC_ALL=C' >> /etc/profilememcached
source /etc/profile性能
安裝perl相關軟件優化
yum -y install perl-devel
安裝php eaccelerator緩存加速模塊
一、下載eaccelerator軟件包
二、解壓
三、進入解壓目錄
四、執行phpize,通常在php目錄下php/bin/phpize
五、編譯參數
./configure --enable-eaccelerator=shared --with-php-config=/usr/local/php/bin/php-config
make
make install
六、查看是否編譯成功
ls /usrl/local/php/lib/php/extensions/no-debug-non-zts-20090626/
#顯示以下,表明編譯成功
eaccelerator.so
安裝perl相關軟件
yum -y install perl-devel
安裝php xcache緩存加速模塊
一、下載eaccelerator軟件包
二、解壓
三、進入解壓目錄
四、執行phpize,通常在php目錄下php/bin/phpize
五、編譯參數
./configure --enable-xcache --with-php-config=/usr/local/php/bin/php-config
make
make install
六、查看是否編譯成功
ls /usrl/local/php/lib/php/extensions/no-debug-non-zts-20090626/
#顯示以下,表明編譯成功
xcache.so
數據庫Memcahe高性能的分佈式的內存對象緩存系統
Memcache分爲服務端軟件(例如memcached-2.2.5.tar.gz)和客戶端軟件(memcache-2.2.5.tar.gz)
如今安裝客戶端(memcache-2.2.5.tar.gz)
一、下載軟件
二、解壓,進入軟件目錄
三、執行phppize
四、編譯
./configure --with-php-config=/usrl/local/php/bin/php-config
make
make install
五、查看是否編譯成功
ls /usrl/local/php/lib/php/extensions/no-debug-non-zts-20090626/
#顯示以下,表明編譯成功
memcache.so
PDO_MYSQL擴展模塊爲php訪問數據庫定義了一個輕量級、一致性的接口,他提供了一個數據訪問抽象層
一、下載軟件包
二、解壓,進入軟件目錄
三、執行phppize
四、編譯
./configure --with-php-config=/usr/local/php/bin/php-config --with-pdo-mysql=/usrl/local/mysql
make
make install
五、查看是否編譯成功
ls /usrl/local/php/lib/php/extensions/no-debug-non-zts-20090626/
#顯示以下,表明編譯成功
pdo-mysql.so