Is it possible to make only one dynamic table for event source in prooph CQRS + ES, instead of creating a new table for each ID?
I am using this tutorial https://pilsniak.com/cqrs-es-php-prooph/
Is it possible to make only one dynamic table for event source in prooph CQRS + ES, instead of creating a new table for each ID?
I am using this tutorial https://pilsniak.com/cqrs-es-php-prooph/
You have to use a SingleStreamStrategy instead of the AggregateStreamStrategy used in the tutorial.
Read more about Persistance Strategies in the docs.