首页 > 代码库 > linux 下安装memcached与php的memcache扩展

linux 下安装memcached与php的memcache扩展

1、yum install memcached;

2、/usr/bin/memcached -d -m 128 -l 127.0.0.1 -p 11211 -u root;

3、memcached-tool 127.0.0.1:11211 stats;

4、yum install php-pecl-memcache;

5、vi /etc/php.ini     添加extension=/usr/lib/php/modules/memcache.so

linux 下安装memcached与php的memcache扩展