NCQRS 和 Lokad.CQRS 之间的差异
我目前正在查看 CQRS用于将托管在 Azure 中的项目的框架。
我已阅读过有关 Ncqrs 和 Lokad.CQRS 的内容,目前有点困惑。
它们都可以与 Azure 配合使用吗?都能够使用 NServiceBus 还是 Lokad 使用自己的消息传递?
我将使用的客户端有网络客户端和移动客户端。我想过制作一个 WCF 服务来获取命令,但不确定它是否是 WCF。
有什么建议吗?
I am currently looking at CQRS frameworks to use for a project that will be hosted in Azure.
I have read about Ncqrs and Lokad.CQRS and am currently a little bit confused.
Will they both work with Azure, are both capable of using NServiceBus or does Lokad use its own messaging?
The clients I will use are both web and mobile. I thought of making a WCF service to get commands, but not sure it will be WCF.
Any recommendations?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Lokad.CQRS 从一开始就设计为与 Azure 配合使用。它使用 Azure 队列进行消息传递(当消息不符合 8Kb 大小限制时,使用天蓝色 blob)。
我不确定 NCqrs,但它可能为 Lokad.CQRS 提供适配器。
Lokad.CQRS was designed to work with Azure from the start. It uses Azure Queues for the messaging (with azure blobs for the cases, when messages do not fit in 8Kb size limitation).
I'm not sure about NCqrs, but it might provide an adapter for Lokad.CQRS.