Skip to content

v0.10.0

Compare
Choose a tag to compare
@Skn0tt Skn0tt released this 16 Nov 14:49
· 2252 commits to main since this release

Quirrel v0.10 comes with two new options for jobs:

exclusive Jobs

A job that's marked as exclusive is guaranteed to be executed
on its own, with no other jobs from the same queue running
at the same time.

This can be useful when need to execute jobs one by one, for example when implementing an order queue.

override: true

Until now, when creating a job with an ID that already existed, the new job was discarded.

With override, you can now mark the job to override potentially existing old ones.