docs: Saga explanation (#2962)

* docs: update cqrs pattern name

* docs: add saga docs
This commit is contained in:
Ilkka Seppälä
2024-05-19 16:04:44 +03:00
committed by GitHub
parent 3297eb42a0
commit 25d12fdc06
7 changed files with 142 additions and 65 deletions
+5 -1
View File
@@ -1,5 +1,5 @@
---
title: CQRS
title: Command Query Responsibility Segregation
category: Architectural
language: en
tag:
@@ -8,6 +8,10 @@ tag:
- Scalability
---
## Also known as
* CQRS
## Intent
Command Query Responsibility Segregation (CQRS) aims to segregate the operations that modify the state of an application (commands) from the operations that read the state (queries). This separation allows for more flexible and optimized designs, especially in complex systems.