mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-07 08:23:14 +00:00
12 lines
236 B
Ruby
12 lines
236 B
Ruby
|
redis_conn = proc {
|
||
|
$redis.dup
|
||
|
}
|
||
|
|
||
|
Sidekiq.configure_server do |config|
|
||
|
config.redis = ConnectionPool.new(size: 5, &redis_conn)
|
||
|
end
|
||
|
|
||
|
Sidekiq.configure_client do |config|
|
||
|
config.redis = ConnectionPool.new(size: 25, &redis_conn)
|
||
|
end
|