Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering.
The default memcached port is 11211.
To run with Docker using default configuration:
docker run -p 11211:11211 --rm cgr.dev/chainguard/memcached
Connect to Memcached with telnet
$ telnet localhost 11211
Trying ::1...
Connected to localhost.
Escape character is '^]'.
set foo 0 100 3
bar
STORED
get foo
VALUE foo 0 3
bar
END
quit
Connection closed by foreign host.