MySQL触发器是为了缓存结果吗?
我有一个查询需要大约一秒钟的时间来执行预缓存。后缓存就好了。这是问题的描述: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您使用的是 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