I would like to create a bulk insert of jobs, just like that: Sidekiq::Client.push_bulk('class' => MyWorker, 'args' => [...])
but using ActiveJob, I found nothing about that :/
Can someone share an example how can I do?
thanks
There isn't a way to do that with Active Job. AJ does not wrap every single Sidekiq feature.