我应该如何使用 EventStore 中的streamId?
在 J Oliver 的 EventStore 中,打开流时我应该如何使用streamId?
我应该为每个对象/聚合根对象创建一个新的流/streamid 吗?
那么我认为应该是 ar 对象的订单状态对象是否应该每个都有一个streamid?
In J Oliver's EventStore how should i be using the streamId when opening a stream?
Should I have a new stream/streamid for each object/aggregate root object?
So should my order state objects which i think should be ar objects each have a streamid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
StreamId 是您的聚合根 ID。您可能想将其包含在您的命令中。由于它们是 Guid,因此您可以在从客户端发送命令之前设置它们,这意味着您可以对同一 AR 进行操作,而无需从读取模型加载它。
以下是使用 CommonDomain 项目的示例:
The StreamId is your Aggregate Root Id. You probably want to include it in your Commands. Since they are Guids, you can set them before you send the command from the client which means that you can act upon the same AR without having to load it from the read model.
Here is an example using the CommonDomain project: