MemcachedClient has a getStats method which accepts a String key for the stat value. Is there a list of possible keys I can use?
Also is this a local operation or a blocking call to server to get those stats?
MemcachedClient has a getStats method which accepts a String key for the stat value. Is there a list of possible keys I can use?
Also is this a local operation or a blocking call to server to get those stats?
i think that params for getStats are the same used when you "telnet" your memcache. You can find stats command args here: http://lzone.de/articles/memcached.htm
options are: slabs, malloc, items, detail, sizes, reset.
I don't know if it's a blocking call, but i dont think so.
hope this will help,
cheers.