我有这个控制器:
class PagesController < ApplicationController
caches_page :index
def index
end
end
并action_controller.perform_caching
为每个环境启用。
在生产环境中,一切都按预期运行,缓存页面存储在 public/cache/index.html 中,但对于开发和测试,index.html 的缓存版本在每次请求时都会重新生成。
我正在使用 Rails 3.1.8