- causality and causation streams shouldn't contain more than 5 events per stream
- user stream which should be < 200 atm
- causality and causation streams shouldn't contain more than 5 events per stream
- user stream which should be < 200 atm
- publish the events to the stream "User$#{user_uuid}"
- debug the events that have been triggered for a specific user thanks to this stream
- publish the events to the stream "User$#{user_uuid}"
- debug the events that have been triggered for a specific user thanks to this stream
A causation between events isn't the most important information for me.
A causation between events isn't the most important information for me.
But! I would like to know how that email has been triggered, which in fact is caused by an User creation
But! I would like to know how that email has been triggered, which in fact is caused by an User creation
Unfortunately, there's no direct link between events: I create an User instance, a handler reacts to UserCreated event, the handler may create an Email instance, and a handler reacts to EmailCreated to send an email
Unfortunately, there's no direct link between events: I create an User instance, a handler reacts to UserCreated event, the handler may create an Email instance, and a handler reacts to EmailCreated to send an email
ease the UI/UX of an app with good performances
or improve the performances of an easy-to-use app?
considering a large codebase
ease the UI/UX of an app with good performances
or improve the performances of an easy-to-use app?
considering a large codebase
User <-> UserCreated <-> handler <-> created models
User <-> UserCreated <-> handler <-> created models