I currently use delayed job to process jobs asynchronously. Instead of creating workers, I use the .delay
method a lot.
I want to move to Sidekiq, but I
It seems that Sidekiq has mix-in that adds .delay
methods to all classes. Not 100% sure how this will behave but it could result in problems if delay
you are refering to is on the instance level.
My advice would be to add sidekiq
library per job until you have moved all you jobs to it. Meaning to avoid including both libraries at the same time, again if possible.