我正在尝试在 Rails 中实现缓存并希望缓存整个主页。到目前为止,最快的方法是cache_page :home
在控制器中使用方法,但它似乎一次都不起作用。这是我的home
方法。
def home
@banners = BannerUpload.order('series').with_attached_image
img = ActionController::Base.helpers.asset_path("share-meta.png")
@sections = Section.includes(:homepage_items).where(active: true).order('position')
@testimonials = Testimonial.where(status: true)
end
这是我得到的错误:
undefined method each_with_index for nil:NilClass
对于@banners
对象,意味着即使第一次查询也没有命中。
我也找不到任何关于这个问题的文章。我尝试设置不同的商店但没有帮助:
config.cache_store = :mem_cache_store
或
config.cache_store = :memory_store
等
编辑:
我自己解决了。实际上我不知道默认情况下页面缓存不包含在rails中。所以我不得不将它包含在 gem 'actionpack-page_caching' 之后,它工作正常。