Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CQRS implementation for iOS

Tags:

ios

ios5

cqrs

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.

like image 553
Mahmoud Adam Avatar asked Feb 05 '12 16:02

Mahmoud Adam


1 Answers

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.

like image 110
Derick Schoonbee Avatar answered Nov 27 '22 20:11

Derick Schoonbee