This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-24 18:50:48 -07: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-25 06:20:31 -07:00
|
|
|
config.redis = ConnectionPool.new(size: 5, &redis_conn)
|
2016-03-24 18:50:48 -07:00
|
|
|
end
|