1
0
mirror of https://github.com/mastodon/documentation synced 2025-04-11 22:56:17 +02:00

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