什么是最积极的FLUSH / RESET mysql命令来清除查询缓存(以及其他任何东西......)

发布于 2024-11-19 08:35:06 字数 145 浏览 4 评论 0原文

我在 mysql.com 上阅读,此 FLUSH / RESET 命令有多种变体。

从 mysqld 刷新所有可能的内容(缓存、缓冲区、所有内容)的最积极的方法是什么?

我们希望尽可能接近“刚刚开始”,而不关闭守护进程。

谢谢!

i am reading here on mysql.com, there are multiple variants of this FLUSH / RESET command.

what is the most aggressive method of flushing EVERYTHING POSSIBLE (caches, buffers, EVERYTHING) from mysqld?

we want to get as close to 'just started' as possible, without shutting down the daemon.

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷鸟归林 2024-11-26 08:35:06

我想这些应该可以:

RESET QUERY CACHE;
FLUSH STATUS, TABLES WITH READ LOCK;

请阅读相应的手册部分并确保您知道自己在做什么;)

http://dev.mysql.com/doc/refman/5.1/en/reset.html

http://dev.mysql.com/doc/refman/5.1/en/flush.html

I guess these should do:

RESET QUERY CACHE;
FLUSH STATUS, TABLES WITH READ LOCK;

Please read the appropriate manual sections and make sure you know what you are doing ;)

http://dev.mysql.com/doc/refman/5.1/en/reset.html

http://dev.mysql.com/doc/refman/5.1/en/flush.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文