architecture

2016-08-15T15:41:06.000060Z

In CQRS, in the commands processor, assuming your state in a domain model in memory, do you usually produce a new state somehow and then produce corresponding events, or do you first produce the events and then apply them to the current state? How do you reconstruct the in-memory model on system start?

dominicm 2016-08-15T16:50:42.000061Z

You replay the events (from a storage)