MEMCACHE
Pogocache supports the commands from the Memcache text protocol, including
set
, add
, replace
, append
, prepend
, cas
get
, gets
, delete
, incr/decr
, flush_all
The Memcache text protocol can be used with Telnet or with a number of memcache clients that are available for most programming languages.
For example using telnet, here's how to store an entry and then retrieve that entry, using the
set
and get
commands.
$ telnet 127.0.0.1 9401
set mykey 0 60 5
hello
STORED
get mykey
VALUE mykey 0 5
hello
END