Event Sourcing
Get a brief overview of event sourcing and understand the difference between event streaming and event sourcing.
We'll cover the following...
Event sourcing is a pattern of recording each change to an aggregate into an append-only stream. To reconstruct an aggregate’s final state, we must read events sequentially and apply them to the ...