iOS 的 CQRS 实现
我正在使用 CQRS(命令和查询职责分离
)并为其寻找 iOS 实现/库,知道在哪里可以找到它吗?
谢谢。
I'm working with CQRS (Command and Query Responsibility Segregation
) and looking for an iOS implementation/library for it, any idea where i can find it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CQRS 非常适合偶尔连接的客户端,尤其是当您添加事件溯源时。它们通常齐头并进,但 CQRS 可以在没有 ES 的情况下完成。我不了解 iOS,但同样的原则也适用。看一下 此处。
可以在这里找到 Greg Young(CQRS 领先专家之一)的精彩演讲:CQRS,不仅仅适用于服务器系统
请记住,CQRS 是一种模式(而不是框架),您可以可以应用于您的解决方案 (应用)。
CQRS 变得更加“主流” - 请参阅 MS 模式和实践 页面,了解有关第一个内容的更多深入信息关联。
CQRS can be a good fit for occasionally connected clients especially when you add Event Sourcing. They normally go hand in hand but CQRS can be done without ES. I do not know iOS but the same principles can apply. Have a peek here.
A good talk by Greg Young (one of the CQRS leading experts) can be found here: CQRS, not just for server systems
Keep in mind that CQRS is a pattern (not a framework) that you can apply to your solution (application).
CQRS is going a bit "more mainstream" - see MS Patterns and Practices page for more in depth info on the first link.
也许你应该尝试一下 MVVM。
CQRS 不应该在移动应用程序中使用。
更新:我错了,CQRS 也很适合应用于移动开发,但它的好处不如 Web 开发
Maybe you should try MVVM.
CQRS is not something that should be used in mobile application.
UPDATE: I was wrong, CQRS is also pretty good to be applied on mobile dev, but it has less benefits than on web-dev