在生产中,我在 config/environments/production.rb 中关闭了缓存:
config.action_controller.perform_caching = false
但是内容正在被缓存,我似乎无法清除它。日志只是指出:
Started GET "/1234" for 12.34.56.78 at 2013-06-21 23:36:41 +0100
Processing by MyController#index as HTML
Parameters: {"product_id"=>"1234"}
Rendered my_app/index.html.erb within layouts/application (0.0ms)
Completed 200 OK in 259ms (Views: 2.1ms | ActiveRecord: 254.7ms)
什么给出以及如何清除缓存?