Development tips, help, and suggestions for building performant websites
MemCache
Memcache – Accessing data via TelNet
02 years ago
by Mike Purcell
in MemCache
Accessing Memcache via CLI (telnet)
If you have access to a memcache server you can access it directly as if it were a mysql server or any other daemon that allows console management. To access:
telnet <hostname> 21201
Accessing data
Now that you have gained access to the memcache console you can set, get, and delete memcache keys.
Retrieve:
get <key>
Set:
set <key>
Delete:
delete <key>
