Search code examples
ruby-on-railsbulkinsertsidekiqrails-activejob

Bulk insert using ActiveJob and Sidekiq


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


Solution

  • There isn't a way to do that with Active Job. AJ does not wrap every single Sidekiq feature.