我正在使用Ruby on Rails 3,我想开始“编写”缓存系统。
我正在开发模式下处理 localhost 。我听说在开发模式下工作可能会遇到一些“令人困惑”的错误。 为什么?缓存的最佳方式是什么?
答案 0 :(得分:10)
你需要一个清醒的头脑。
在development.rb
中,更改此内容:
config.action_controller.perform_caching = true
然后工作和测试。它将在/public
中编写缓存页面,在/tmp/cache
以下是了解Rails中缓存的好文章:
http://broadcastingadam.com/2012/07/advanced_caching_revised