FAQ
What is event sourcing?
Go back
Event sourcing is an alternative way to persist data. In contrast with state-oriented persistence that only keeps the latest version of the entity state, event Sourcing stores each state mutation as a separate record called an event.
By reading all events for an entity the latest state can be derived.