php5.6 安裝memcached 擴展

igbinary 安裝:https://github.com/igbinary/igbinary/tree/branch-2.0.1
php5.6安裝需要選擇2.0分支

/usr/local/php/bin/phpize 
 ./configure --with-php-config=/usr/local/php/bin/php-config
make && make install
php.ini 添加  extension=igbinary.so

libmemcached 安裝:https://github.com/php-memcached-dev/php-memcached/tree/REL2_0
./configure --prefix=/usr/local/libmemcached --with-memcached
make && make install


memcached 擴展安裝:
wget http://pecl.php.net/get/memcached-2.2.0.tgz
tar zxvf memcached-2.2.0.tgz
cd memcached-2.2.0
/usr/local/php/bin/phpize 

./configure --with-php-config=/usr/local/php/bin/php-config  --with-libmemcached-dir=/usr/local/libmemcached  --enable-memcached --enable-memcached-json --enable-memcached-igbinary
make && make install
php.ini 添加 extension=memcached.so
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章