Redis connection
and concurrencies
calculator for hosting Sidekiq on Heroku with Redis to GoSimple calculator to calculate how many concurrencies
and Redis connections
you have to define for working with on
# app/config/initializers/sidekiq.rb require 'sidekiq' Sidekiq.configure_client do |config| config.redis = { :size => 0 } end Sidekiq.configure_server do |config| # The config.redis is calculated by the # concurrency value so you do not need to # specify this. For this demo I do # show it to understand the numbers config.redis = { :size => 0 } end
# app/config/sidekiq.yml :concurrency: 0
Note: You might also need to increase the pool size of your AR database.
See: Advanced Options - Concurrency