首页 > 代码库 > ubuntu下安装php memcache扩展
ubuntu下安装php memcache扩展
memcached 安装
sudo apt-get install memcached
memcached 参数说明
memcached -d -m 50 -p 11211 -u root
-m 指定使用多少兆的缓存空间;-p 指定要监听的端口; -u 指定以哪个用户来运行
安装php-memcache模块
sudo apt-get install php5-memcache
编辑配置文件
sudo vi /etc/php5/conf.d/memcache.ini
;uncomment the next line to enable the module
extension=memcache.so
[memcache]
memcache.dbpath="/var/lib/memcache"
memcache.maxreclevel=0
memcache.maxfiles=0
memcache.archivememlim=0
memcache.maxfilesize=0
memcache.maxratio=0
在phpinfo()查看memcache的相关配置
测试:
$mem = new Memcache;$mem->connect("127.0.0.1", 11211);$mem->set(‘key‘, ‘This is a memcached test!‘, 0, 60);$val = $mem->get(‘key‘);echo $val;
本文转自:http://www.cnblogs.com/skillCoding/archive/2012/04/05/2433116.html
ubuntu下安装php memcache扩展
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。