美文网首页
Redis cache hit rate

Redis cache hit rate

作者: Yves_lau | 来源:发表于2016-08-16 17:47 被阅读164次

    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.png

    A real-time Redis monitoring tool :
    https://github.com/junegunn/redis-stat

    refer: https://ruby-china.org/topics/22761

    相关文章

      网友评论

          本文标题:Redis cache hit rate

          本文链接:https://www.haomeiwen.com/subject/nobpsttx.html