Memcached: Difference between revisions
Jump to navigation
Jump to search
(Created page with "''Free & open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviatin...") |
No edit summary |
||
| Line 2: | Line 2: | ||
http://memcached.org/ |
http://memcached.org/ |
||
Play with telnet |
|||
<pre> |
|||
$ telnet localhost 11211 |
|||
Trying 127.0.0.1... |
|||
Connected to localhost. |
|||
Escape character is '^]'. |
|||
get foo |
|||
VALUE foo 0 2 |
|||
hi |
|||
END |
|||
stats |
|||
STAT pid 8861 |
|||
(etc) |
|||
</pre> |
|||
Revision as of 09:51, 28 April 2015
Free & open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.
Play with telnet
$ telnet localhost 11211 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. get foo VALUE foo 0 2 hi END stats STAT pid 8861 (etc)