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.
我有一个运行 memcached 的 centos 服务器。我使用 spymemcached 客户端来存储缓存键值对。
我需要清除所有缓存值和键。
我是在客户端还是服务器端执行此操作?
我已经尝试过 telnet 方法来 flush_all
我在 spymemcached 方面尝试过:
冲洗();
这些都不会清除缓存。
有人可以帮忙吗?
flush();只是使 memcached 缓存中的所有项目无效。您可能需要重新启动 memcached 服务器以清除缓存。从技术上讲,使用 go flush();memcached 是安全的,它将在需要时使用分配的内存。
flush();