Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 626 Bytes

README.md

File metadata and controls

7 lines (4 loc) · 626 Bytes

What is event sourcing pattern?

Event sourcing consists in storing all changes that happened to an application as a sequence of events instead of only storing the current state of the application. The sum of all events is the current application state.

This code is the complete example to explain what is event sourcing pattern in this blog post (coming soon).

The original Game aggregate is available on this branch and its event-sourced one is available on the main branch.