【背景】
memcached是一个开源的缓存服务,内存式的,数据以key/value值存在预先分配好的内存中。重启就丢失的。在内存中,所以存取速度快。 采用libevent事件模型。
memcached 是服务程序
memcache 是客户端程序 如作为php的模块
【应用场景】
1 mysql的缓存
2 session的缓存
【安装】
安装简单,易用
【安装步骤】
官网下载
http://memcached.org/ 官网
http://www.memcached.org/files/memcached-1.4.29.tar.gz
wget http://www.memcached.org/files/memcached-1.4.29.tar.gz
tar -xvf memcached-1.4.29.tar.gz cd memcached-1.4.29 ./configure --prefix=/usr/local/memcached make make install
可执行文件/usr/local/memcached/bin/memcached (可将其将加入环境变量)
如果不指定安装目录,默认安装在/usr/local 下面(则默认的可执行文件在/usr/local/bin/memcached)
【启动服务与停止服务】
查看帮助信息
/usr/local/memcached/bin/memcached -h
查看版本信息
/usr/local/memcached/bin/memcached -V
常用的启动参数:
-p <num> TCP port number to listen on (default: 11211)
-u <username> assume identity of <username> (only when run as root)
-l <addr> interface to listen on (default: INADDR_ANY, all addresses)
-d run as a daemon
-m <num> max memory to use for items in megabytes (default: 64 MB)
-P <file> save PID in <file>, only used with -d option
-t <num> number of threads to use (default: 4)
-c <num> max simultaneous connections (default: 1024)
-M return error on memory exhausted (rather than removing items)
启动2个实例:
/usr/local/memcached/bin/memcached -p 11211 -u root -c 1024 -m 16m -d -P /var/run/memcached_11211.pid
/usr/local/memcached/bin/memcached -p 11212 -u root -c 1024 -m 16m -d -P /var/run/memcached_11212.pid
验证:
ps -ef |grep memcached netstat -tulnp |grep mem
带日志并后台启动:
memcached -p 11211 -uroot -c 1024 -m 16m -P /var/runmemcached_11212.pid -vv &> /var/log/memcached_11211.log &
停止memcached
1 可以强制全部杀死
pkill memcached
2 强制杀死一个
kill -9 pid
3 正规路径停止memcached
kill `cat /var/run/memcached_11211.pid`
【linux命令下简单操作memcached】
注意: 一般不常用,只为调试和学习用。
方式1 telnet
方式2 printf或结合nc命令 --- 推荐使用
设定一个key
printf "set key1 0 0 5\r\n12345\r\n"|nc 127.0.0.1 11211
获取一个key
printf "get key1\r\n"|nc 127.0.0.1 11211
echo stats | nc localhost 11211
echo stats items | nc 127.0.0.1 11211
实时查看状态
watch -n1 -d "echo stats | nc localhost 11211"
查看设置
printf "stats settings\r\n" | nc 127.0.0.1 11212
查看slabs
printf "stats slabs\r\n" | nc 127.0.0.1 11212
【lamp 与lnmp中安装memcache模块的环境】
确保环境已经安装好 lnmp
查看php的配置信息
/usr/local/php/bin/php -i |grep configure
可以确定是lnmp还是php-fpm环境
或者通过
ls /usr/local/php 目录下是否有sbin目录,有则是lnmp环境,使用了sbin/php-fpm方式启动php
查看此时是否已经安装了memcache模块
[root@slave html]# cat phpinfo.php
<?php
phpinfo();
?>
或者
/usr/local/php/bin/php -m
且此时不能看到memcache模块
【为lnmp的php安装memcache模块】
下载php的memcache模块
http://pecl.php.net/package/memcache
wget http://pecl.php.net/get/memcache-2.2.7.tgz
tar zxvf memcache-2.2.7.tgz cd memcache-2.2.7 /usr/local/php/bin/phpize ./configure --with-php-config=/usr/local/php/bin/php-config make make install
结果:
[root@slave memcache-2.2.7]# make install
Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/
【memcache在php中生效-修改php.ini配置文件】
extension_dir = "./"
修改为
extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626"
并添加一行
extension = memcache.so
重启php-fpm
killall php-fpm
启动
/usr/local/php/sbin/php-fpm
或者知指定配置文件进行启动。
/usr/local/php/sbin/php-fpm -c /usr/local/php/etc/php.ini -y /usr/local/php/etc/php-fpm.conf
-c <path>|<file> Look for php.ini file in this directory
-y, --fpm-config <file>
推荐使用(安全重启的方法)
kill -USR2 `cat /usr/local/php/var/run/php-fpm.pid`
默认php-fpm.conf是没有的需要自己创建,里面就是配置是管理php-fpm进程的。需要自己创建(且pid默认是none的,需要打开pid那行的配置文件,启用pid文件)
结果:
#/usr/local/php/bin/php -m |grep mem memcache
且phpinfo页面可以看到memcache模块的详细信息
【一段小程序php连接memcache】
连接数据库只需要指定IP:port就可以了。
[root@slave html]# cat test_conn_memcache.php
<?php //连接Memcache $mem = new Memcache; $mem->addServer("192.168.100.10", 11211); $mem->addServer("192.168.100.10", 11211); //保存数据 $mem->set('key1', 'This is first value', 0, 60); $val = $mem->get('key1'); echo "Get key1 value: " . $val ."<br>"; //保存数组数据 $arr = array('aaa', 'bbb', 'ccc', 'ddd'); $mem->set('key2', $arr, 0, 60); $val2 = $mem->get('key2'); echo "Get key2 value: "; print_r($val2); echo "<br>"; //删除数据 $mem->delete('key1'); $val = $mem->get('key1'); echo "After delete key1 ,Get key1 value: " . $val . "<br>"; //关闭连接 $mem->close(); ?>
或如下简单的程序
<?php $memcache = new Memcache; //创建一个memcache对象 $memcache->connect('localhost', 11211) or die ("Could not connect"); //连接Memcached服务器$memcache-> set('key', 'test'); //设置一个变量到内存中,名称是key 值是test $get_value = $memcache->get('key'); //从内存中取出key的值 echo $get_value;?>
结果:
注意: php-fpm的日志路径/usr/local/php/var/log/php-fpm.log
【监控memcached的使用状态】
1 结合zabbix和shell
内存大小
命中率
2 使用开源的图形软件memadmin
http://www.junopen.com/memadmin
安装(lnmp 或者 lamp环境可运行)
wget http://www.junopen.com/memadmin/memadmin-1.0.12.tar.gz
tar xvf memadmin-1.0.12.tar.gz -C /usr/local/nginx/html/
(可能要稍稍配置一下nginx.conf文件内容)
连接
http://192.168.100.13/memadmin/index.php?action=set.con
大致所的stats信息:
参数值描述
pid2773memcache服务器进程ID
uptime13263服务器已运行秒数
time1470577520服务器当前Unix时间戳
version1.4.13memcache版本
libevent1.4.13-stablelibevent版本
pointer_size64操作系统指针大小
rusage_user0.321951进程累计用户时间
rusage_system0.446932进程累计系统时间
curr_connections10当前连接数量
total_connections58Memcached运行以来连接总数
connection_structures12Memcached分配的连接结构数量
reserved_fds20内部使用的FD数
cmd_get 44get命令请求次数
cmd_set 26set命令请求次数
cmd_flush0flush命令请求次数
cmd_touch0touch命令请求次数
get_hits25get命令命中次数
get_misses19get命令未命中次数
delete_misses0delete命令未命中次数
delete_hits12delete命令命中次数
incr_misses0incr命令未命中次数
incr_hits0incr命令命中次数
decr_misses0decr命令未命中次数
decr_hits0decr命令命中次数
cas_misses0cas命令未命中次数
cas_hits0cas命令命中次数
cas_badval0使用擦拭次数
touch_hits0touch命令命中次数
touch_misses0touch命令未命中次数
auth_cmds0认证命令处理的次数
auth_errors0认证失败数目
bytes_read3121读取总字节数
bytes_written23943发送总字节数
limit_maxbytes16777216分配的内存总大小(字节)
accepting_conns1接受新的连接
listen_disabled_num0失效的监听数
threads 4当前线程数
conn_yields0连接操作主动放弃数目
hash_power_level16hash表等级
hash_bytes524288当前hash表大小
hash_is_expanding0hash表正在扩展
expired_unfetched0已过期但未获取的对象数目
evicted_unfetched0已驱逐但未获取的对象数目
bytes132当前存储占用的字节数
curr_items1当前存储的数据总数
total_items24启动以来存储的数据总数
evictions0LRU释放的对象数目
reclaimed1已过期的数据条目来存储新数据的数目
区别:
curr_items Memcached 当前存储的内容数量
total_items Memcached 启动以来存储过的内容总数
【memcached的集群】
因为mencache的各各节点是独立的,数据不共享,所以需要通过程序调度算法进行memcached分布式的使用.
如:memcache代理程序进行url hash算法 决定到某个node
【用作lamp的session缓存--针对小站点】
vim /usr/local/php/etc/php.ini
修改两项就可以
session.save_handler = files
改成
session.save_handler = memcache
;session.save_path = "/tmp"
改成呢个
session.save_path = "tcp://ip:port"
【运维管理memcache常用的命令】
1 测试增加键值并赋值
set命令
语法:
command <key> <flags> <expiration time> <bytes>
<value>
参数说明如下:
command set/add/replace
key key 用于查找缓存值
flags 可以包括键值对的整型参数,客户机使用它存储关于键值对的额外信息
expiration time 在缓存中保存键值对的时间长度(以秒为单位,0 表示永远)
bytes 在缓存中存储的字节点
value 存储的值(始终位于第二行)
set userid 0 0 5 -->执行
12345 —>第二行设置内容value
STORED -->返回
2 获取value
get mykey mykey1 获取多个key的值
get userid -->执行获取userid的值
VALUE userid 0 5 -->userid的信息
12345 -->userid的值
END --->返回值
# echo -e "get a" | nc 127.0.0.1 11211
VALUE a 0 5
22222
END
# echo -e "set a 0 0 5\r\n22222\r\n" | nc 127.0.0.1 11211
STORED
ERROR ---> echo命令的结束自带\n 导致。
最好是使用printf进行输出。因为printf和echo是有区别的,因为prinf是不自带换行符的,而且memcache中的换行符只是支持 \r\n.所以使用echo 会自带的\n在内部会产生一个ERROR的错误。
[root@ops-cuizhiliang001 ~]# printf "set a 0 0 5\r\n33333\r\n" | nc 127.0.0.1 11211
STORED
3 add 区别set
仅当缓存中不存在键时,add 命令才会向缓存中添加一个键值对。如果缓存中已经存在键,则之前的值将仍然保持相同,并且您将获得响应 NOT_STORED。
下面是使用 add 命令的标准交互:
set userid 0 0 5
22222
STORED
get userid
VALUE userid 0 5
22222
END
add userid 0 0 5 --->执行
11111 ---> value
NOT_STORED --->返回值,
get userid
VALUE userid 0 5
22222 --->因为执行add的时候userid是存在的,所有值不变,为原来的值。
END
4 flush_all
刷新掉所有keys的值,清空。注意是清空缓存的值,key是不删除的。将当前所有缓存数据设置为过期,但不会释放内存
5 delete 删除执行的key
get userid
VALUE userid 0 4
1234
END
delete userid -->执行删除操作
DELETED --->返回值
get userid
END
6 stats 查看信息
printf "stats\r\n" |nc 127.0.0.1 11211