Skip to content

Latest commit

 

History

History
6 lines (3 loc) · 436 Bytes

cqrs.md

File metadata and controls

6 lines (3 loc) · 436 Bytes

CQRS

  • CQRS #ril

    • CQRS stands for Command Query Responsibility Segregation. It's a pattern that I first heard described by Greg Young. At its heart is the notion that you can use a DIFFERENT MODEL TO UPDATE INFORMATION THAN THE MODEL YOU USE TO READ INFORMATION. For some situations, this separation can be valuable, but beware that for MOST systems CQRS adds RISKY COMPLEXITY.