码迷,mamicode.com
首页 > Web开发 > 详细

ubuntu下安装php memcache扩展

时间:2014-10-11 14:00:55      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   使用   ar   文件   sp   

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扩展

标签:style   blog   http   color   io   使用   ar   文件   sp   

原文地址:http://www.cnblogs.com/eczhou/p/4018616.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!