当我使用cached:true时,Rails集合渲染缓存不起作用

时间:2018-03-29 21:23:31

标签: ruby-on-rails caching

我的项目是使用Rails 4.2.9。

我发现缓存在索引页面中不起作用。 (我查看了日志。)

# This doens't cache.
<%= render partial: 'docs/doc', collection: @docs, cached: true %>

# This caches fine.
<% @docs.each do |doc| %>
  <% cache doc do %>
    <%= render 'docs/doc', doc: doc %>
  <% end %>
<% end %>

根据导轨指南,第一个示例不仅有效,而且更好。我做错了什么?

1 个答案:

答案 0 :(得分:1)

您似乎需要更新自己的rails版本,至少需要更新版本5才能实现。

看起来像version 5 has this feature,但是version 4.2 does not have this feature。它已添加到this commit中,您可以在https://blog.bigbinary.com/2016/03/09/rails-5-makes-partial-redering-from-cache-substantially-faster.html阅读更多相关信息。