CQRS

Back to Event-Driven Architecture

Command Query Responsibility Segregation. Separate read and write models. Commands mutate state through one model optimized for writes; queries read state through a different model optimized for reads. Enables independent scaling and optimization of each side.

Key Properties


architecture event-driven cqrs