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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.