2021-09-12 13:27:23 +03:00

29 lines
980 B
Markdown

---
title: CQRS
category: Architectural
language: en
tags:
- Performance
- Cloud distributed
---
## Intent
CQRS Command Query Responsibility Segregation - Separate the query side from the command side.
## Class diagram
![alt text](./etc/cqrs.png "CQRS")
## Applicability
Use the CQRS pattern when
* You want to scale the queries and commands independently.
* You want to use different data models for queries and commands. Useful when dealing with complex domains.
* You want to use architectures like event sourcing or task based UI.
## Credits
* [Greg Young - CQRS, Task Based UIs, Event Sourcing agh!](http://codebetter.com/gregyoung/2010/02/16/cqrs-task-based-uis-event-sourcing-agh/)
* [Martin Fowler - CQRS](https://martinfowler.com/bliki/CQRS.html)
* [Oliver Wolf - CQRS for Great Good](https://www.youtube.com/watch?v=Ge53swja9Dw)
* [Command and Query Responsibility Segregation (CQRS) pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/cqrs)