1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > ubuntu php7 memcache linux ubuntu下安装php memcache扩展

ubuntu php7 memcache linux ubuntu下安装php memcache扩展

时间:2020-09-19 21:15:31

相关推荐

ubuntu php7 memcache linux 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 编辑配

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;

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。