The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
236 B

  1. redis_conn = proc {
  2. $redis.dup
  3. }
  4. Sidekiq.configure_server do |config|
  5. config.redis = ConnectionPool.new(size: 5, &redis_conn)
  6. end
  7. Sidekiq.configure_client do |config|
  8. config.redis = ConnectionPool.new(size: 25, &redis_conn)
  9. end