docs: add CQRS architecture diagram

This commit is contained in:
Ilkka Seppälä
2025-02-23 20:16:05 +02:00
parent 851ebba4d7
commit 1f44a8c84c
2 changed files with 4 additions and 0 deletions
@@ -32,6 +32,10 @@ Microsoft's documentation says
> CQRS separates reads and writes into different models, using commands to update data, and queries to read data.
Architecture diagram
![CQRS Architecture Diagram](etc/CQRS Architecture Diagram.png)
## Programmatic Example of CQRS Pattern in Java
One way to implement the Command Query Responsibility Segregation (CQRS) pattern is to separate the read and write operations into different services.