Bulk enqueueing #5
Replies: 1 comment
-
Proposal: Add a my_task.bulk_enqueue([
my_task.prepare(1, {"2": 3}),
my_task.prepare(4, {"5": 6}),
]) There's a potential foot-gun with this approach, in how modified attributes (ie |
Beta Was this translation helpful? Give feedback.
-
Currently, the API only supports enqueuing one task at a time. For most use cases, this is fine, however for larger-scale deployments, it would be handy to schedule multiple tasks at once (akin to
bulk_create
in the ORM).Beta Was this translation helpful? Give feedback.
All reactions