I hope this is the right group for these questions:
If using MongoDb and Entity Sourcing how could we do snapshots?
Should we use something like RabbitMQ or ZMQ or something else for messaging if using MongoDb as persistence? What do messages look like? Should we even use messages?
If using Eventual Consistency on the read side, how do you projecting or publish from your Event Source to your Read Model? What if the client needs to display the data on a results screen after a submit it just sent over the API to the Event Store along with say, a mash up of some kind based on business logic the server is responsible for? Should a message to some Read Model repository be sent asking for a query once it's consistent and push this to the client, as the client waits?
What does the Domain Models look like for an event? I have a lot of relationships some with behavior and some without, is that a problem?
What does a Event look like in terms of a Model or Schema, in other words how do you build up a schema from events, what does it look like? If that is in fact the way it is done...
It's been a struggle to find up to date info on this in NodeJS for some reason.
--
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.
If using MongoDb and Entity Sourcing how could we do snapshots?
Should we use something like RabbitMQ or ZMQ or something else for messaging if using MongoDb as persistence? What do messages look like? Should we even use messages?
If using Eventual Consistency on the read side, how do you projecting or publish from your Event Source to your Read Model? What if the client needs to display the data on a results screen after a submit it just sent over the API to the Event Store along with say, a mash up of some kind based on business logic the server is responsible for? Should a message to some Read Model repository be sent asking for a query once it's consistent and push this to the client, as the client waits?
What does the Domain Models look like for an event? I have a lot of relationships some with behavior and some without, is that a problem?
What does a Event look like in terms of a Model or Schema, in other words how do you build up a schema from events, what does it look like? If that is in fact the way it is done...
Are covered in the video I mentioned as they are not node specific.
Cheers,
Greg