cqrs
-
Command Query Responsibility Segregation (CQRS)Modeling/Architecture 2020. 3. 10. 08:58
1. Overview The Command and Query Responsibility Segregation (CQRS) pattern separates read and update operations for a data store. Implementing CQRS in your application can maximize its performance, scalability, and security. The flexibility created by migrating to CQRS allows a system to better evolve over time and prevents update commands from causing merge conflicts at the domain level. 1.1 M..