memcache可以告诉你它使用了多少内存?

时间:2011-02-22 17:05:16

标签: ruby-on-rails memcached

memcache可以告诉你它总共使用了多少内存?

特定密钥怎么样?

2 个答案:

答案 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"];

请参阅http://php.net/manual/en/memcache.getstats.php