有没有什么办法可以在不重启mySQL服务器的情况下清除mysql查询缓存?
Is there any way to clear mysql query cache without restarting mySQL server?
我相信你可以用...
RESET QUERY CACHE;
...如果您运行的用户具有重新加载权限.或者,您可以通过以下方式对查询缓存进行碎片整理...
...if the user you're running as has reload rights. Alternatively, you can defragment the query cache via...
FLUSH QUERY CACHE;
查看查询缓存状态和MySQL 手册的维护部分了解更多信息.
See the Query Cache Status and Maintenance section of the MySQL manual for more information.
这篇关于无需重启服务器即可清除 MySQL 查询缓存的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!