Linux下安装memcache PHP扩展

[root@centos memcache-2.2.4]# wget http://pecl.php.net/get/memcache-2.2.4.tgz

[root@centos memcache-2.2.4]# tar -zxvf memcache-2.2.4.tgz 

[root@centos memcache-2.2.4]# cd memcache-2.2.4

[root@centos memcache-2.2.4]# phpize

[root@centos memcache-2.2.4]# ./configure --with-php-config=/usr/local/php/bin/php-config

[root@centos memcache-2.2.4]# make && make install

//php.ini 添加memcache扩展
extension=/usr/local/php/lib/php/extensions/no-debug-non-zts-20121212/memcache.so

  

原文地址:https://www.cnblogs.com/justphp/p/5656442.html