View content of memcached

loggingmemcachedmonitoring

Are there any tools to explore what is currently cached inside a memcached pool? Not some much graphs, but the actual key/values currently stored.

Best Answer

Try stats items - i.e.

echo "stats items" | nc 127.0.0.1 11211
Related Topic