MySQL触发器是为了缓存结果吗?

发布于 2024-10-17 16:48:11 字数 311 浏览 1 评论 0原文

我有一个查询需要大约一秒钟的时间来执行预缓存。后缓存就好了。这是问题的描述:MySQL:嵌套集很慢?

如果我可以'没有找到解决我的问题的方法,创建一个触发器来循环并执行该表可能必须执行的所有可能的查询(即,如果该表上有 100 条记录,它将执行 100 条查询)是一个好主意吗?这样,当我的应用程序执行此类查询时,我可以依赖缓存的结果。

这感觉像是一个糟糕的解决方案,但我真的无法承受该查询的 1 秒响应时间。

I have a query that takes about a second to execute pre-cache. Post-cache is fine. Here's a description of the problem: MySQL: nested set is slow?

If I can't get a solution for my problem, would creating a trigger to loop through and execute all the possible queries that table might have to do (i.e. if there are 100 records on that table, it would execute 100 queries) be a good idea? This way, when my application does execute such a query, I can depend on cached results.

It feels like a bad solution, but I really can't afford a 1 second response time from that query.

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

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

发布评论

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

评论(1

止于盛夏 2024-10-24 16:48:11

由于您使用的是 MyISAM 表,因此可以尝试将表索引预加载到键缓存中。

http://dev.mysql.com/doc/refman/5.0 /en/cache-index.html

http:// /dev.mysql.com/doc/refman/5.0/en/load-index.html

Since you are using a MyISAM table, you can try preload the table indexes into the key cache.

http://dev.mysql.com/doc/refman/5.0/en/cache-index.html

http://dev.mysql.com/doc/refman/5.0/en/load-index.html

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