使用写入时缓存扩展 Rails

发布于 2024-08-13 10:00:08 字数 209 浏览 6 评论 0原文

我目前有一个使用传统缓存的 Rails 应用程序。 cache do 块用于缓存缓慢渲染的部分。这在大多数情况下都非常有效,除了少数页面在第一次阅读时需要很长时间才能呈现。

我想通过在底层数据发生变化时在模型或扫描器中进行渲染,将这些部分的渲染从读取端移至写入端。优选地,这将在已经使高速缓存键无效的清除器中。这是一个好方法吗?有没有“正确”的方法来做到这一点?

I currently have a rails app that uses the traditional caching. cache do blocks are used to cache slow-rendering partials. This works great for the most part, except for a few pages which take too long to render on the first read.

I'd like to move the rendering of these partials to the write-side from the read-side, by rendering in either the model or in sweepers when the underlying data changes. Preferably, this would be in the sweepers that already invalidate the cache keys. Is this a good approach? Is there a "right" way to do this?

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

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

发布评论

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

评论(1

十秒萌定你 2024-08-20 10:00:08

是需要一段时间才能呈现的实际部分还是实际获取数据所需的查询?如果是后者,您最好以直写方式缓存这些内容,这可能比尝试在写入时更新缓存的部分更简单。

Is it the actual partial that is taking a while to render or the queries required to actually get the data? If it's the latter you're better off caching those in a write-through manner, it might be simpler than trying to update cached partials on write.

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