DEV Community

Discussion on: Coding Sidekiq Workers the Right Way

Collapse
 
reneeharbison081 profile image
reneeharbison081

Does multiple workers really work on standalone sidekiq? for example, I have 2 employees: ProccessWorker CallbackWorker

when i run sidekiq: bundle exec sidekiq -r./workers/proccess_worker.rb -C./config/sidekiq.yml

only one worker during this time.

customwritingz, Gene E. Burks

Collapse
 
raphael_jambalos profile image
Raphael Jambalos

Hi Renee,

I usually just do bundle exec sidekiq -c config/sidekiq.yml. This will serve workers that are in the queues specified in the config/sidekiq.yml :D