2016-03-25 12:50:48 +11:00
|
|
|
redis_conn = proc {
|
|
|
|
$redis.dup
|
|
|
|
}
|
|
|
|
|
|
|
|
Sidekiq.configure_server do |config|
|
|
|
|
config.redis = ConnectionPool.new(size: 5, &redis_conn)
|
|
|
|
end
|
|
|
|
|
|
|
|
Sidekiq.configure_client do |config|
|
2016-03-26 00:20:31 +11:00
|
|
|
config.redis = ConnectionPool.new(size: 5, &redis_conn)
|
2016-03-25 12:50:48 +11:00
|
|
|
end
|