2014-05-25 00:56:11 +08:00
|
|
|
Sidekiq.configure_server do |config|
|
2015-04-12 15:46:17 +08:00
|
|
|
config.redis = { :namespace => ENV['REDIS_NAMESPACE'] }
|
2014-05-25 00:56:11 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
Sidekiq.configure_client do |config|
|
2015-04-12 15:46:17 +08:00
|
|
|
config.redis = { :namespace => ENV['REDIS_NAMESPACE']}
|
2014-05-25 00:56:11 +08:00
|
|
|
end
|