CQRS
Overview
Section titled “Overview”CQRS separates writes from reads so each side can be shaped for its own needs.
Core Ideas
Section titled “Core Ideas”- Commands change state.
- Queries read state.
- The models can differ.
Why It Matters
Section titled “Why It Matters”The split can improve clarity in complex systems, but it is not free.