Is there a good way to monitor how quickly items are dropping out of memcache?
Asked
Active
Viewed 216 times
3 Answers
1
I've found this quite useful in the past.. Although probably not quite what you're after. http://code.google.com/p/memcache-top/

Tom O'Connor
- 27,480
- 10
- 73
- 148
1
If you telnet to the server and run the 'stats' command you will get the number of evictions since the server started. If you automate this and run it periodically you will be able to track the eviction rate over time, although you will not know exactly what was evicted.

Chris
- 181
- 3
-
And by `telnet`, you mean `ssh`, right? :) – mattdm Dec 05 '10 at 14:23
-
@mattdm nope, he means telnet. Memcached uses telnet for admin stuff =) – Jun 03 '11 at 23:02
-
1Oh I see. Not telnet to the server system; use telnet to open a tcp connection to the server port. – mattdm Jun 03 '11 at 23:28
0
You can try phpmemcacheadmin like stand-alone monitoring tool to to see both evicted item counts and rates.

edigu
- 271
- 1
- 3
- 11