-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Description
I like to make a feature request for add support for pushing a large batch of jobs to the Faktory server, something similar to what Sidekiq offers with #push_bulk.
The network latency of enqueueing a job individually is starting to add up when dealing with a large data set.
Sample code
markers = ids.each_slice(10).to_a
markers.each do |m|
SomeWorker.perform_async(m[0], m[-1])
end
Is there a workaround for something like this for the time being?
Metadata
Metadata
Assignees
Labels
No labels