[root@memcache ~]# telnet 127.0.0.1 11211 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. stats memcached agent v0.4 matrix 1 -> 127.0.0.1:11221, pool size 0 matrix 2 -> 127.0.0.1:11222, pool size 0 END set key1 0 0 1 1 STORED set key2 0 0 1 2 STORED quit Connection closed by foreign host.
[root@memcache ~]# telnet 127.0.0.1 11221 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. get key1 END get key2 VALUE key2 0 1 2 END quit Connection closed by foreign host.
[root@memcache ~]# telnet 127.0.0.1 11222 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. get key1 VALUE key1 0 1 1 END get key2 END quit Connection closed by foreign host.
[root@memcache ~]# telnet 127.0.0.1 11223 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. get key1 VALUE key1 0 1 1 END get key2 VALUE key2 0 1 2 END quit Connection closed by foreign host.