2016-11-08 07:20:52 +09:00
|
|
|
host = ENV.fetch('REDIS_HOST') { 'localhost' }
|
|
|
|
port = ENV.fetch('REDIS_PORT') { 6379 }
|
2016-03-25 10:50:48 +09:00
|
|
|
|
|
|
|
Sidekiq.configure_server do |config|
|
2016-03-26 00:10:14 +09:00
|
|
|
config.redis = { host: host, port: port }
|
2016-03-25 10:50:48 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
Sidekiq.configure_client do |config|
|
2016-03-26 00:10:14 +09:00
|
|
|
config.redis = { host: host, port: port }
|
2016-03-25 10:50:48 +09:00
|
|
|
end
|