Redis - possible to view hit/miss of individual keys?

redis

Solution

No it's not possible, redis source code:

server.stat_keyspace_misses++;

But you can write your own wrapper for your redis client.

Problem

Is it possible to obtain the hit/miss counts of individual keys in redis? While it is possible to use the `INFO` command in `redis-cli` to obtain the `keyspace_hits` and `keyspace_misses`, they are too generic to be useful to me. Thanks!

Original source