0
votes

Is there anyway to create a sidekiq queue on the fly from a worker or controller? I have users on a web app I'm building. They run background jobs. I want to be able to have one queue for each user. So the number of queues is variable. Can I do this?

1

1 Answers

0
votes

No, you can't the queues are created when the sidekiq is started. There is no way out by which we can configure it at runtime.