AdvancedVocabulary#software-architecture#backend#developer-tools

Event Sourcing Vocabulary

Build fluency in the vocabulary of storing every state-changing event instead of only the current state.

0 / 5 completed
1 / 5
A teammate explains that instead of storing only the current state of an order, the system stores every state-changing event, such as OrderPlaced and OrderShipped, as an immutable append-only sequence, and the current state is derived by replaying those events. What architectural pattern is being described?