memcache 能告诉你它使用了多少内存吗?

发布于 2024-10-18 19:59:16 字数 52 浏览 1 评论 0原文

memcache 能告诉你它总共使用了多少内存吗?

对于特定的密钥怎么样?

Can memcache tell you how much memory it is using in total?

How about for a particular key?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

|煩躁 2024-10-25 19:59:16

在命令行上,您可以执行以下操作:

echo "stats" | nc 127.0.0.1 11211 | grep bytes

And on the command line, you could do this:

echo "stats" | nc 127.0.0.1 11211 | grep bytes
放肆 2024-10-25 19:59:16

在 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

In php, but I'm sure you are able to translate to RoR:-

echo "You are using " . $memcache->getstats()["bytes"] . " of storage ";
echo "out of " . $memcache->getstats()["limit_maxbytes"];

See http://php.net/manual/en/memcache.getstats.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文