Messaging terms
Decoupling systems through reliable, async communication
Asynchronous messaging decouples producers from consumers and makes distributed systems more resilient. This category covers message queues, pub/sub patterns, event streaming with Kafka, delivery guarantees, dead letter queues, and the architecture patterns that make event-driven systems robust at scale. When you need services to communicate without depending on each other's availability, messaging is the answer.
Pub/Sub Pattern
Pub/Sub (Publish-Subscribe) decouples senders from receivers — publishers emit events to topics, all interested subscribers receive them without knowing each other.
2mo ago
messaging beginner
Webhooks vs Message Queues
Webhooks push events via HTTP to a registered URL (caller waits for response); message queues decouple sender and receiver — queues are more reliable but require consumer infrastructure.
2mo ago
messaging beginner