Memcached stats 命令
memcached stats 命令
memcached stats 命令用于返回统计信息例如 pid(进程号)、版本号、连接数等。
1. 语法
stats 命令的基本语法格式如下:
stats
2. 范例
在以下范例中,我们使用了 stats 命令来输出 memcached 服务信息。
stats stat pid 1162 stat uptime 5022 stat time 1415208270 stat version 1.4.14 stat libevent 2.0.19-stable stat pointer_size 64 stat rusage_user 0.096006 stat rusage_system 0.152009 stat curr_connections 5 stat total_connections 6 stat connection_structures 6 stat reserved_fds 20 stat cmd_get 6 stat cmd_set 4 stat cmd_flush 0 stat cmd_touch 0 stat get_hits 4 stat get_misses 2 stat delete_misses 1 stat delete_hits 1 stat incr_misses 2 stat incr_hits 1 stat decr_misses 0 stat decr_hits 1 stat cas_misses 0 stat cas_hits 0 stat cas_badval 0 stat touch_hits 0 stat touch_misses 0 stat auth_cmds 0 stat auth_errors 0 stat bytes_read 262 stat bytes_written 313 stat limit_maxbytes 67108864 stat accepting_conns 1 stat listen_disabled_num 0 stat threads 4 stat conn_yields 0 stat hash_power_level 16 stat hash_bytes 524288 stat hash_is_expanding 0 stat expired_unfetched 1 stat evicted_unfetched 0 stat bytes 142 stat curr_items 2 stat total_items 6 stat evictions 0 stat reclaimed 1 end
这里显示了很多状态信息,下边详细解释每个状态项:
- pid: memcache服务器进程id
- uptime:服务器已运行秒数
- time:服务器当前unix时间戳
- version:memcache版本
- pointer_size:操作系统指针大小
- rusage_user:进程累计用户时间
- rusage_system:进程累计系统时间
- curr_connections:当前连接数量
- total_connections:memcached运行以来连接总数
- connection_structures:memcached分配的连接结构数量
- cmd_get:get命令请求次数
- cmd_set:set命令请求次数
- cmd_flush:flush命令请求次数
- get_hits:get命令命中次数
- get_misses:get命令未命中次数
- delete_misses:delete命令未命中次数
- delete_hits:delete命令命中次数
- incr_misses:incr命令未命中次数
- incr_hits:incr命令命中次数
- decr_misses:decr命令未命中次数
- decr_hits:decr命令命中次数
- cas_misses:cas命令未命中次数
- cas_hits:cas命令命中次数
- cas_badval:使用擦拭次数
- auth_cmds:认证命令处理的次数
- auth_errors:认证失败数目
- bytes_read:读取总字节数
- bytes_written:发送总字节数
- limit_maxbytes:分配的内存总大小(字节)
- accepting_conns:服务器是否达到过最大连接(0/1)
- listen_disabled_num:失效的监听数
- threads:当前线程数
- conn_yields:连接操作主动放弃数目
- bytes:当前存储占用的字节数
- curr_items:当前存储的数据总数
- total_items:启动以来存储的数据总数
- evictions:lru释放的对象数目
- reclaimed:已过期的数据条目来存储新数据的数目
相关文章