Memcached Client getStats list of keys for the possible stats?

3.6k views Asked by At

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?

1

There are 1 answers

2
linibou On BEST ANSWER

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.