how to disable Rack::Cache in Rails 3.1

Couldn’t find this anywhere but what I found worked was to put this in config/application.rb: require ‘rack/cache’ config.middleware.delete Rack::Cache This did fix the issue that sent me to this, as many people are likely to run into. The issue was that since Rack::Cache uses the default Rails FileStore that lots and lots of small files …

Continue reading ‘how to disable Rack::Cache in Rails 3.1’ »