0

Is there a good way to monitor how quickly items are dropping out of memcache?

clofresh
  • 141
  • 1
  • 5

3 Answers3

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
0

You can try phpmemcacheadmin like stand-alone monitoring tool to to see both evicted item counts and rates.

phpmemcacheadmin

edigu
  • 271
  • 1
  • 3
  • 11