mirror of
https://github.com/funamitech/mastodon
synced 2024-12-01 08:18:53 +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
|