CQRS
Version 1.0.0 · Updated 2026-07-30
CORE DEFINITION
Command Query Responsibility Segregation. It separates the channels for "modifying data" (write/command) and "reading data" (read/query) completely, because "read" and "write" have vastly different requirements in performance, security, and frequency.
SCAFFOLDING EFFECT
Reduce cognitive load
Decouple complexity. In management, separate the "decision-maker" (write state) from the "reporter/observer" (read state). Do not let reporting meetings become decision meetings; mixing the two leads to inefficiency.
Anchor fast decisions
Separate read and write models—write (command) emphasizes consistency and business rules, read (query) emphasizes performance and presentation; the two have different load characteristics, and after separation they can be independently scaled and optimized.
MINIMUM ACTION
In progress 0/3Practice this model in one real situation:
account_treeGenealogyexpand_more
menu_bookReferencesexpand_more
Source support: Explicit
- en.wikipedia.orghttps://en.wikipedia.org/wiki/Command_Query_Responsibility_Segregationverified
PRIVATE NOTES · Only visible to you
SAVED Q&A
ENTRY Q&A · Private saving available
Ask with a clear boundary
thinkingmodels answers from published entry context only.
Your question is sent to thinkingmodels. The answer uses public entry context only.
RELATED MODELS