Queues
Doddle can process multiple queues and each one can have a different priority.
Implementation details
The priority for a queue is a value between 0 and 1. The lower the number, the higher the priority.
Queue names must only consist of lowercase letters, digits, underscore, and dash (since 1.7.6) characters only.
A queue can also be locked and unlocked. Workers will be not pick up jobs associated to a queue that has been locked.
Defining queues
Queues can be defined by using the client:
Operations
Fetch queues
Fetch a queue by its identifier
Fetch a queue by its name
Delete a queue
This will throw an error if there are jobs associated to the queue
Delete all queues
If a queue has jobs associated to it then it will not be deleted
Lock and unlock queues
Last updated
Was this helpful?