View content of memcached

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.


Solution 1:

Try stats items - i.e.

echo "stats items" | nc 127.0.0.1 11211

Solution 2:

The correct answer would be echo "stats cachedump SLABS_ID LIMIT" | nc HOSTNAME PORT

eg. echo "stats cachedump 15 4" | nc 127.0.0.1 11211

This would give the output on the lines of:

ITEM cache_path-comments%2Fpage%2F2 [2211 b; 1337195558 s]
ITEM cache_path-comments%2Fpage%2F5 [2205 b; 1337195558 s]
ITEM cache_path-comments%2Fpage%2F6 [2179 b; 1337195558 s]
ITEM cache_path-comments [2164 b; 1337195558 s]
END

Note: This is an undocumented command that is not supported by the memcached team and can be removed in any version. For the complete reference, check out Understanding Memcached stats cachedump command.

Solution 3:

memcached-tool

In the recent version of memcached there is also memcached-tool perl script, e.g. usage:

memcached-tool localhost:11211 dump | less

which dumps all keys and values.

memdump

To dump a list of keys from a server, use memcdump/memdump tool, e.g.

memcdump --servers=localhost 

To dump all objects:

memcdump --servers=localhost | xargs -L1 -I% sh -c 'echo "get %" | nc localhost 11211'

To dump all key values into separate files:

while read -r key; do [ -f "$key" ] || echo "get $key" | nc localhost 11211 > "$key.dump"; done < <(memcdump --server localhost)

memccat

To print a key value, you can use memccat command, e.g.

memccat CACHE-KEY

Bash

To dump all keys in Bash shell, try:

exec {memcache}<>/dev/tcp/localhost/11211; printf "stats items\nquit\n" >&${memcache}; cat <&${memcache}

netcat

Here is example to get value of single item using netcat:

echo "get 13456_-cache-some_object" | nc 127.0.0.1 11211

Python

See: How to export all keys and values from memcached with Python?