mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-08-11 00:25:02 +00:00
docs: Saga explanation (#2962)
* docs: update cqrs pattern name * docs: add saga docs
This commit is contained in:
+5
-1
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user