用户登录
用户注册

分享至

memcached 查询工具

  • 作者: 叶量辰
  • 来源: 51数据库
  • 2020-12-18
你的环境是什么?

win下面:
1、windows系统连接memcached端口 cmd命令行中键入telnet 192.168.1.1 11211,这里 11211是memcached绑定的端口号。
2、连接上端口后输入 stats命令,即可得到描述Memcached服务器运行情况的参数。
stats :显示服务器信息、统计数据等



  查看memcached运行状态的命令是:echo stats | nc 127.0.0.1 11211

查看memcached状态的基本命令,通过这个命令可以看到如下信息:

stat pid 22459 进程id

stat uptime 1027046 服务器运行秒数

stat time 1273043062 服务器当前unix时间戳

stat version 1.4.4 服务器版本

stat pointer_size 64 操作系统字大小(这台服务器是64位的)

stat rusage_user 0.040000 进程累计用户时间

stat rusage_system 0.260000 进程累计系统时间

stat curr_connections 10 当前打开连接数

stat total_connections 82 曾打开的连接总数

stat connection_structures 13 服务器分配的连接结构数

stat cmd_get 54 执行get命令总数

stat cmd_set 34 执行set命令总数

stat cmd_flush 3 指向flush_all命令总数

stat get_hits 9 get命中次数

stat get_misses 45 get未命中次数

stat delete_misses 5 delete未命中次数

stat delete_hits 1 delete命中次数

stat incr_misses 0 incr未命中次数

stat incr_hits 0 incr命中次数

stat decr_misses 0 decr未命中次数

stat decr_hits 0 decr命中次数

stat cas_misses 0 cas未命中次数

stat cas_hits 0 cas命中次数

stat cas_badval 0 使用擦拭次数

stat auth_cmds 0

stat auth_errors 0

stat bytes_read 15785 读取字节总数

stat bytes_written 15222 写入字节总数

stat limit_maxbytes 1048576 分配的内存数(字节)

stat accepting_conns 1 目前接受的链接数

stat listen_disabled_num 0

stat threads 4 线程数

stat conn_yields 0

stat bytes 0 存储item字节数

stat curr_items 0 item个数

stat total_items 34 item总数

stat evictions 0 为获取空间删除item的总数

stats items

输出各个slab中的item信息。s

stats slabs

输出slab中更详细的item信息

stats sizes

输出所有item的大小和个数

stats cachedump

根据输出相同的中的item信息。是输出的个数,当为0是输出所有的item。

利用shell命令操作memcached

1、数据存储(假设key为g,value为12345)

printf “set g 0 0 5\r\n12345\r\n”|nc 127.0.0.1 11211

stored

2、数据取回(假设key为zhangyan)

printf “get g\r\n”|nc 127.0.0.1 11211

value g 0 5

12345

end

3、数值增加1(假设key为g,并且value为正整数)

printf “incr g 1\r\n” | nc 127.0.0.1 11211

12346

4、数值减少3(假设key为g,并且value为正整数)

printf “decr g 3\r\n” | nc 127.0.0.1 11211

12343

5、数据删除(假设key为g)

printf “delete g\r\n” | nc 127.0.0.1 11211

deleted

6、查看memcached状态

printf “stats\r\n” | nc 127.0.0.1 11211

stat pid 3025

stat uptime 4120500

stat time 1228021767

stat version 1.2.6

stat pointer_size 32

stat rusage_user 433.463103

stat rusage_system 1224.515845

stat curr_items 1132460

stat total_items 8980260

stat bytes 1895325386

stat curr_connections 252

stat total_connections 547850

stat connection_structures 1189

stat cmd_get 13619685

stat cmd_set 8980260

stat get_hits 6851607

stat get_misses 6768078

stat evictions 0

stat bytes_read 160396238246

stat bytes_written 260080686529

stat limit_maxbytes 2147483648

stat threads 1

end

7、模拟top命令,查看memcached状态:

watch “printf ‘stats\r\n’ | nc 127.0.0.1 11211″

或者

watch “echo stats | nc 127.0.0.1 11211″

一、echo stats items | nc127.0.0.1 11211

stat items:1:number 998 slab id=1 ; items数量:998(也就是已经存储了998个key值)

stat items:1:age 604348 slab id=1 ; 已经存在时间,单位秒

stat items:1:evicted 0 slab id=1 ; 被踢出的数量

stat items:1:evicted_nonzero 0

stat items:1:evicted_time 0

stat items:1:outofmemory 0

stat items:1:tailrepairs 0

stat items:1:reclaimed 0

stat items:6:number 91897 slab id=6 ; items数量:91897(也就是已经存储了91897个key值)

stat items:6:age 604345 slab id=6 ; 已经存在时间,单位秒

stat items:6:evicted 0 slab id=6 ; 被踢出的数量

stat items:6:evicted_nonzero 0

stat items:6:evicted_time 0

stat items:6:outofmemory 0

stat items:6:tailrepairs 0

stat items:6:reclaimed 0
软件
前端设计
程序设计
Java相关