0

在生产中,我在 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)

什么给出以及如何清除缓存?

4

1 回答 1

1

这根本不是在做缓存。并且将 action_comtoller 缓存设置为 false 真正确保不进行缓存。

如果有缓存,您的响应实际上会说它是从缓存中加载的。

于 2013-06-22T00:00:34.763 回答