Use info
command in redis-cli
info memory
info stats
or
telnet localhost 6379
info
How to calculate the rate ?
keyspace_hit / ( keyspace_hit + keyspace_misses ) = hit_rate
official doc : http://redis.io/commands/info
屏幕快照 2016-08-16 下午2.50.01.pngA real-time Redis monitoring tool :
https://github.com/junegunn/redis-stat
网友评论