Is there any command line or php script which returns the memcached total memory usage?
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
As Mike said, you can look at the line including the "STAT bytes" to see memory usage:
|
|||
|
|
|
memcache's default port is 11211 so if memcache is local
Then run the stats command and that will spit out memory usage
|
|||||
|
|
I personally use PhpMemcacheAdmin http://code.google.com/p/phpmemcacheadmin/ It creates an easy to use GUI. Of course you'll need to have PHP support. |
|||
|
|