Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我们尝试过的 java 客户端(SpyMemcacheD 和 Danga)上运行 flush() 不会重置 memcached 服务器上的统计信息。
有谁知道这样做的好方法?我可以实现一个远程登录客户端发送
统计重置
但这似乎太过分了
您是否尝试过以下操作?
c.getStats("reset");
如果你有 MemcachedClient 对象,那么你可以在对象的帮助下调用 flush 方法。它会将存储在 MemcachedClient 对象中的所有值重置为 null。