参考https://blog.bigbinary.com/2016/01/25/caching-in-development-environment-in-rails5.html
rails 4配置config/environments/development.rb如下:
config.action_controller.perform_caching = true
可开启开发环境缓存,但是需要重启server.
rails 5使用命令:
$ rails dev:cache
开启/关闭缓存, 不需要重启rails server.
具体请查看如上参考的文章。
网友评论