A general-purpose distributed memory caching system.
411
Derived from the "port" by Adam Miller [email protected] from https://github.com/fedora-cloud/Fedora-Dockerfiles Originally written for Fedora-Dockerfiles by Stephen Tweedie [email protected]
memcached is a general-purpose distributed memory caching system. It is often used to speed up dynamic database-driven websites by caching data and objects in RAM to reduce the number of times an external data source (such as a database or API) must be read.
Get the version of Docker:
# docker version
Copy the sources down -
# docker build -rm -t <username>/memcached .
# docker run -d -p 11211:11211 <username>/memcached .
# telnet localhost 11211
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
stats
STAT pid 1
STAT uptime 165
STAT time 1387383960
STAT version 1.4.15
STAT libevent 2.0.21-stable
<snip>
Content type
Image
Digest
Size
72.3 MB
Last updated
about 9 years ago
docker pull clefos/memcached