Complete the code to identify the main component that stores all changes as events.
The core component in event sourcing that stores all changes is called the [1].
The Event Store is the main component that records every change as an event in event sourcing.
Complete the code to describe the process that rebuilds the current state from events.
To get the current state, event sourcing uses a process called [1] which replays all events.Event Replay is the process of applying all stored events to rebuild the current state.
Fix the error in the description of the event sourcing write process.
When a change happens, the system [1] the new state directly to the database.In event sourcing, the system stores events representing changes, not the new state directly.
Fill both blanks to complete the event sourcing pattern description.
In event sourcing, the [1] records all changes as events, and the [2] rebuilds the current state by applying these events.
The Event Store records all events, and the Event Processor applies them to rebuild state.
Fill all three blanks to complete the event sourcing write flow.
When a user action occurs, the system creates an [1], stores it in the [2], and then the [3] updates the read model.
The system creates an Event, stores it in the Event Store, and the Event Processor updates the read model accordingly.
