当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《memcache可以告诉你它使用了多少内存?》经验,为你挑选了2个好方法。

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

特定钥匙怎么样?



1> Paul D. Wait..:

在命令行上,您可以这样做:

echo "stats" | nc 127.0.0.1 11211 | grep bytes



2> servermanfai..:

在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

推荐阅读
拾味湖
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有