The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
323 B

  1. # frozen_string_literal: true
  2. namespace = ENV.fetch('REDIS_NAMESPACE') { nil }
  3. redis_params = { url: ENV['REDIS_URL'] }
  4. if namespace
  5. redis_params [:namespace] = namespace
  6. end
  7. Sidekiq.configure_server do |config|
  8. config.redis = redis_params
  9. end
  10. Sidekiq.configure_client do |config|
  11. config.redis = redis_params
  12. end