We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de8bc73 commit 7f53448Copy full SHA for 7f53448
config/environments/production.rb
@@ -56,7 +56,8 @@
56
config.log_tags = [ :request_id ]
57
58
# Use a different cache store in production.
59
- # config.cache_store = :mem_cache_store
+ config.cache_store = :redis_cache_store, { url: ENV['REDIS_URL'] } if ENV['REDIS_URL'].present?
60
+ config.cache_store = :redis_cache_store, { url: ENV['REDISCLOUD_URL'] } if ENV['REDISCLOUD_URL'].present?
61
62
# Use a real queuing backend for Active Job (and separate queues per environment).
63
# config.active_job.queue_adapter = :resque
0 commit comments