标签: ruby-on-rails ruby
如何在一段时间后使片段缓存过期。我偶然发现了对timed_fragment_cache宝石的引用,但似乎过时了。
timed_fragment_cache
答案 0 :(得分:74)
使用ActiveSupport::Cache::Store,您应该可以
ActiveSupport::Cache::Store
<% cache(key, expires_in: 1.hour) do %> <!-- content --> <% end %>