Skip to content

Instantly share code, notes, and snippets.

@dvdasari
Last active August 29, 2015 14:06
Show Gist options
  • Save dvdasari/6e1ea0e69d0050581fb8 to your computer and use it in GitHub Desktop.
Save dvdasari/6e1ea0e69d0050581fb8 to your computer and use it in GitHub Desktop.
config/initializers/sidekiq.rb
if Rails.env.production?
Sidekiq.configure_server do |config|
config.redis = { :url => 'redis://10.0.WX.YZ:6379/12', :namespace => 'sidekiq' }
end
Sidekiq.configure_client do |config|
config.redis = { :url => 'redis://10.0.WX.YZ:6379/12', :namespace => 'sidekiq' }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment