无需重启服务器即可清除 MySQL 查询缓存

2021-11-20 00:00:00 caching mysql

有没有什么办法可以在不重启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.

相关文章