From df92f010ad5acd72b28e6d49c028f9123e92cf06 Mon Sep 17 00:00:00 2001 From: Clworld Date: Mon, 22 May 2017 22:01:02 +0900 Subject: Set config.cache_store in environments file. (#3219) * Set config.cache_store in application.rb * Set config.cache_store in environments. * fix code format. --- config/environments/production.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'config/environments/production.rb') diff --git a/config/environments/production.rb b/config/environments/production.rb index fa5f07495..750182402 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -50,6 +50,9 @@ Rails.application.configure do # Use a different logger for distributed setups. # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + # Use a different cache store in production. + config.cache_store = :redis_store, ENV['REDIS_URL'], REDIS_CACHE_PARAMS + # Enable serving of images, stylesheets, and JavaScripts from an asset server. # config.action_controller.asset_host = 'http://assets.example.com' -- cgit