mirror of
https://github.com/whippyshou/mastodon
synced 2024-11-24 15:16:26 +09: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
|