From 629bb35025582299c2cddc15fe8954e7bec895a9 Mon Sep 17 00:00:00 2001 From: dickeyxxx Date: Sun, 8 Sep 2013 13:27:39 -0700 Subject: [PATCH] actually use dalli/memcache in production. Without this, it will use the FileStore, which isn't intended by the application. --- config/environments/production.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index c92a516..8c53176 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -40,8 +40,7 @@ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) # Use a different cache store in production - # config.cache_store = :mem_cache_store - # config.cache_store = :dalli_store + config.cache_store = :dalli_store # Enable serving of images, stylesheets, and JavaScripts from an asset server # config.action_controller.asset_host = "http://assets.example.com"