如何从 java 清除 Memcached (1.4.x) 统计信息
在我们尝试过的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您尝试过以下操作吗?
Did you try the following?
如果你有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.