Back to Tags
Event Sourcing
6 items tagged with "event-sourcing"
Filter by type:
Best Practices2
Best Practice
CQRS (Command Query Responsibility Segregation)
An architecture pattern that separates the model that writes data (commands) from the model that reads it (queries), allowing each side to scale and evolve independently.
Best Practice
Event Sourcing
An architecture pattern that stores every change to application state as an immutable sequence of events, making the event log the source of truth instead of current state.