memcached(十二)1.4的stats命令
STAT pid 10937 #服务器进程的进程号STAT uptime 3120815 #服务器自运行以来的秒数STAT time 1369216979 #当前服务器上的UNIX时间STAT version 1.4.15 #服务器的版本字符串STAT libevent 1.4.13-stable #libevent版本STAT pointer_size 64 #可以理解成操作系统位数STAT rusage_user 40.708811 #服务器进程积累的用户时间(秒)STAT rusage_system 92.604921 #服务器进程积累的系统时间(秒)STAT curr_connections 25 #处于打开状态的连接数目STAT total_connections 1169 #曾经打开过的所有连接的数目STAT connection_structures 29 #服务器分配的连接结构体的个数STAT reserved_fds 20 #misc fds使用数STAT cmd_get 20131 #get命令请求的次数STAT cmd_set 6838 #存储命令请求的次数STAT cmd_flush 368 #执行flush_all次数STAT cmd_touch 0 #执行touch次数,touch可以刷新过期时间STAT get_hits 5177 #获取命中的次数STAT get_misses 14954 #获取没有命中的次数STAT delete_misses 222 #delete未命中次数STAT delete_hits 1027 #delete命中次数STAT incr_misses 1 #incr未命中次数STAT incr_hits 2 #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 touch_hits 0 #touch命中次数STAT touch_misses 0 #touch未命中次数STAT auth_cmds 0 #authentication 执行的次数STAT auth_errors 0 #authentication 执行失败的次数STAT bytes_read 439324926 #服务器从网络上读取到的字节数STAT bytes_written 256139619 #服务器向网络上写的字节数STAT limit_maxbytes 8589934592 #服务器允许存储数据的最大值STAT accepting_conns 1 #正在接受的连接数STAT listen_disabled_num 0 #STAT threads 4 #被请求的工作线程的总数量STAT conn_yields 0 #memcached 启动至今有多少次打开的连接因为内部请求数达到 -R 参数指定的限值而被动放弃STAT hash_power_level 16 #hashpower的level,可以在启动的时候设置$ memcached -o hashpower=20STAT hash_bytes 524288 #内存使用总量单位为byteSTAT hash_is_expanding 0 #是否正在扩大hash表STAT expired_unfetched 2714 #item过期之前没有被touch过,也就是放进去之后就没更新过过期时间STAT evicted_unfetched 0 #item替换覆盖之前没有被touch过,也就是放进去之后就没更新过过期时间STAT bytes 22414344 #当前服务器上保存数据的字节数STAT curr_items 336 #当前在服务器上存储的数据项的个数STAT total_items 6151 #在服务器上曾经保存过的数据项的个数STAT evictions 0 #因超时而被替换出内存的数据项的个数STAT reclaimed 3295 #memcached 启动至今有多少次在存储数据的时候使用了过期数据的空间