mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-01-12 02:32:55 -05:00
12 lines
235 B
Ruby
12 lines
235 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: 5, &redis_conn)
|
|
end
|