memcache可以告诉你它总共使用了多少内存?
特定钥匙怎么样?
在命令行上,您可以这样做:
echo "stats" | nc 127.0.0.1 11211 | grep bytes
在PHP中,但我相信你能够翻译成RoR: -
echo "You are using " . $memcache->getstats()["bytes"] . " of storage "; echo "out of " . $memcache->getstats()["limit_maxbytes"];
请参见http://php.net/manual/en/memcache.getstats.php