Topic
Queues, topics, commands, events, workers, delayed messages, payload boundaries, and basic message-driven architecture.
Practice items tagged with Messaging Queue Fundamentals.
Compares point-to-point queues with publish-subscribe topics and explains when each model fits.
Explains why message handlers must tolerate duplicate delivery and how idempotency protects side effects.
Keeps long-running queue work safe when message ownership expires, renewal fails, settlement is uncertain, or another worker receives the same job.
Explains when to store large payloads outside the broker and pass references through messages.
Explains when backend work belongs in a queue instead of slow or unreliable inline request handling.
Explains how multiple worker instances share queue work and what limits safe scaling.