Outbox Pattern
Everything on SkillVeris tagged Outbox Pattern — collected across the glossary, study notes, blog, and cheat sheets.
4 resources across 1 library
Interview Questions(4)
How to Design an Inventory Management System?
An inventory management system is designed around a source-of-truth stock ledger per SKU-per-warehouse with atomic reserve/commit/release operations, an event…
What is the Outbox Pattern?
The outbox pattern solves the dual-write problem by writing both a business state change and the event describing it into the same local database transaction,…
What is Change Data Capture (CDC)?
Change data capture is a technique for detecting and streaming every row-level insert, update, and delete made to a database as an ordered sequence of events,…
What Is the Transactional Outbox Pattern?
The transactional outbox pattern solves the dual-write problem by writing a business change and its corresponding event into the same local database transactio…