如何从 java 清除 Memcached (1.4.x) 统计信息

发布于 2024-09-12 03:14:19 字数 181 浏览 6 评论 0原文

在我们尝试过的java客户端(SpyMemcacheD和Danga)上运行flush()不会重置memcached服务器上的统计信息。

有谁知道一个好方法来做到这一点?我可以实现一个 telnet 客户端来发送

统计数据重置

但这似乎有点过分

Running flush() on the java-clients we've tried (SpyMemcacheD and Danga) does not reset the statistics on the memcached server.

Does anyone know a good way to do this? I could implement a telnet client that sends

stats reset

But that seems excessive

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

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

发布评论

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

评论(2

轻拂→两袖风尘 2024-09-19 03:14:19

您尝试过以下操作吗?

c.getStats("reset");

Did you try the following?

c.getStats("reset");
落花随流水 2024-09-19 03:14:19

如果你有MemcachedClient对象,那么你可以在对象的帮助下调用flush方法。它将把 MemcachedClient 对象中存储的所有值重置为 null。

If you have MemcachedClient object then you can call the flush method with the help of object. It will reset the all the value stored in MemcachedClient object the to null.

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