memcache可以告诉你它总共使用了多少内存?
特定密钥怎么样?
答案 0 :(得分:21)
在命令行上,你可以这样做:
echo "stats" | nc 127.0.0.1 11211 | grep bytes
答案 1 :(得分:7)
在php中,但我相信你能够翻译成RoR: -
echo "You are using " . $memcache->getstats()["bytes"] . " of storage ";
echo "out of " . $memcache->getstats()["limit_maxbytes"];