QML Application Architecture Guide with Flux
-
Hi,
Currently I don't see any standard QML application architecture guide available yet, therefore, I have tried to write a one with using Flux application framework. If you have any questions / feedback for this guide, please feel free to leave a comment and discuss here.
Enjoy it.
-
Did you compare Flux with Command Query Responsibility Segregation(CQRS, seehttp://cqrs.nu/Faq/command-query-resp...) and Event Sourcing (ES, see http://cqrs.nu/Faq/event-sourcing) ? https://www.youtube.com/watch?v=Dhidceb7868
-
@Vincent007 said:
Did you compare Flux with Command Query Responsibility Segregation(CQRS, seehttp://cqrs.nu/Faq/command-query-resp...) and Event Sourcing (ES, see http://cqrs.nu/Faq/event-sourcing) ? https://www.youtube.com/watch?v=Dhidceb7868
From my understanding, Flux is somehow similar to CQRS but Flux is much easier to use. CQRS is complicated becoz it also take care about server-client design.
When people talk about event sourcing, they usually apply on backend system. It is a bit overkilled for client application.