php緩存加速軟件種類
成都創(chuàng)新互聯(lián)總部坐落于成都市區(qū),致力網(wǎng)站建設服務有成都網(wǎng)站設計、做網(wǎng)站、網(wǎng)絡營銷策劃、網(wǎng)頁設計、網(wǎng)站維護、公眾號搭建、小程序設計、軟件開發(fā)等為企業(yè)提供一整套的信息化建設解決方案。創(chuàng)造真正意義上的網(wǎng)站建設,為互聯(lián)網(wǎng)品牌在互動行銷領(lǐng)域創(chuàng)造價值而不懈努力!
xcache
eaccelerator
Zend
apc
eaccelerator具有緩存,加速,優(yōu)化的特點
設置字符集
echo 'export LC_ALL=C' >> /etc/profile
source /etc/profile
安裝perl相關(guān)軟件
yum -y install perl-devel
安裝php eaccelerator緩存加速模塊
1、下載eaccelerator軟件包
2、解壓
3、進入解壓目錄
4、執(zhí)行phpize,一般在php目錄下php/bin/phpize
5、編譯參數(shù)
./configure --enable-eaccelerator=shared --with-php-config=/usr/local/php/bin/php-config
make
make install
6、查看是否編譯成功
ls /usrl/local/php/lib/php/extensions/no-debug-non-zts-20090626/
#顯示如下,代表編譯成功
eaccelerator.so
安裝perl相關(guān)軟件
yum -y install perl-devel
安裝php xcache緩存加速模塊
1、下載eaccelerator軟件包
2、解壓
3、進入解壓目錄
4、執(zhí)行phpize,一般在php目錄下php/bin/phpize
5、編譯參數(shù)
./configure --enable-xcache --with-php-config=/usr/local/php/bin/php-config
make
make install
6、查看是否編譯成功
ls /usrl/local/php/lib/php/extensions/no-debug-non-zts-20090626/
#顯示如下,代表編譯成功
xcache.so
數(shù)據(jù)庫Memcahe高性能的分布式的內(nèi)存對象緩存系統(tǒng)
Memcache分為服務端軟件(例如memcached-2.2.5.tar.gz)和客戶端軟件(memcache-2.2.5.tar.gz)
現(xiàn)在安裝客戶端(memcache-2.2.5.tar.gz)
1、下載軟件
2、解壓,進入軟件目錄
3、執(zhí)行phppize
4、編譯
./configure --with-php-config=/usrl/local/php/bin/php-config
make
make install
5、查看是否編譯成功
ls /usrl/local/php/lib/php/extensions/no-debug-non-zts-20090626/
#顯示如下,代表編譯成功
memcache.so
PDO_MySQL擴展模塊為php訪問數(shù)據(jù)庫定義了一個輕量級、一致性的接口,他提供了一個數(shù)據(jù)訪問抽象層
1、下載軟件包
2、解壓,進入軟件目錄
3、執(zhí)行phppize
4、編譯
./configure --with-php-config=/usr/local/php/bin/php-config --with-pdo-mysql=/usrl/local/mysql
make
make install
5、查看是否編譯成功
ls /usrl/local/php/lib/php/extensions/no-debug-non-zts-20090626/
#顯示如下,代表編譯成功
pdo-mysql.so