...

/

Implementing the Event Store

Implementing the Event Store

Learn how to implement the event store by updating the modules, adding registries, and replacing repositories.

The AggregateRepository interface sits on top of an AggregateStore, which exists only as an interface.

Press + to interact
The AggregateStore interface
The AggregateStore interface

The AggregateStore interface would be what finally makes the connection with the infrastructure on the other side. We will use this interface to create an event store that works with PostgreSQL. ...