Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.05 KB

memcache.md

File metadata and controls

52 lines (40 loc) · 1.05 KB

MEMCACHE CHEATSHEET

Memcached is simple yet powerful. Its simple design promotes quick deployment, ease of development, and solves many problems facing large data caches. Its API is available for most popular languages.

Viewing memcache stats

    echo "stats" | nc localhost 11211

Viewing memcache server stats

    memcached -vv

Viewing slab stats

    echo "stats slabs" | nc localhost 11211

Viewing item stats

    echo "stats items" | nc localhost 11211

Viewing stats sizes

    echo "stats sizes" | nc localhost 11211

Flush all cache

    echo "flush_all" | nc localhost 11211

Print all items of a slab

    stats cachedump <slabs_id> <limit>
    echo "stats cachedump 1 0" | nc localhost 11211

Get multiple items

    echo "get key1 key2" | nc localhost 11211

REFERENCES