linux yum安装memcached的方法

发布时间:2019-12-06编辑:脚本学堂
linux下yum安装memcached的方法,memcache启动命令与启动参数,不了解的朋友参考下。

1、安装
 

yum -y install memcached

2、启动memcached
 

./usr/bin/memcached -d -m 256 -u root -p 11211 -c 1024 –P /tmp/memcached.pid

启动参数:
 

-d 选项是启动一个守护进程。
-u root 表示启动memcached的用户为root。
-m 是分配给Memcache使用的内存数量,单位是MB,默认64MB。
-M return error on memory exhausted (rather than removing items)。
-u 是运行Memcache的用户,如果当前为root 的话,需要使用此参数指定用户。
-p 是设置Memcache的TCP监听的端口,最好是1024以上的端口。
-c 选项是最大运行的并发连接数,默认是1024。
-P 是设置保存Memcache的pid文件。
 

注意:可以输入 which memcached 查看程序路径。

3、连接
 

telnet 127.0.0.1 11211

4、设置读取  set 设置  get 读取
 

set name 0 0 3
123
get name
123

注意:最后一个3是设置字符串的位数。