我有这个控制器:
class PagesController < ApplicationController
caches_page :index
def index
end
end
为环境中的每个人启用和action_controller.perform_caching
。
在生产中,一切都按预期运行,缓存页面存储在public / cache / index.html中,但对于dev和test,每次请求都会重新生成index.html的缓存版本。
我正在使用Rails 3.1.8
答案 0 :(得分:0)
尝试更改config.cache_classes
设置,我无法保证这会有所帮助,在开发模式下,rails通常会重新加载所有内容。