Skip to content

Async and Workflows

Async and Workflows covers work that runs outside the immediate request path.

Use these pages to dispatch queued jobs, run workers, publish events, schedule recurring work, and design retries safely.

  1. Events versus Queues explains when to publish a fact and when to queue durable work.
  2. Jobs shows the unit of queued work.
  3. Queues explains dispatch and backend selection.
  4. Workers covers long-running worker processes.
  5. Scheduler covers recurring work.

All Async Pages