mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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
|