Cognitive Scaffold

Preparing your thinking workspace

arrow_back_ios_new
MENTAL MODEL · M0501

CQRS

CQRS
DecideHigh supportDecision Science
Included
account_tree

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

psychology

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

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/3

Practice this model in one real situation:

Check to track your progress (stored locally)
Learning progress0%
account_treeGenealogyexpand_more
menu_bookReferencesexpand_more

Source support: Explicit

  • link
    en.wikipedia.orghttps://en.wikipedia.org/wiki/Command_Query_Responsibility_SegregationZH · Explicit
    verified

RELATED MODELS