--
You received this message because you are subscribed to the Google Groups "DDD/CQRS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dddcqrs+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Yes, I can just append the event.
But I proceeded from the following assumptions:
1. Model aggregates around invariants.
2. Aggregates are slow to load if they have many events.
3. I don't want to deal with snapshotting, because my domain objects aren't serializable. That's why I choose ES in the first place.
Am I wrong, and snapshot is the only possible way for performant ES?
Hi. To make that clear. "Only a read model" means I have a conceptual Aggregate which has an event Stream but which has no implementation on the write side and is never loaded but the Events are appended from the command Handler directly to the stream? So for all pure crud stuff I do not need any writemodel?
--