Command and Query Responsibility Segregation (CQRS)

Command Query Responsibility Segregation (CQRS) , CQRS, на сайте с December 22, 2022 17:34
Command Query Responsibility Segregation is a software pattern that divides the system into two distinct parts, an append-optimised command side and a read-optimised query side. The command side is typically implemented using the Event Sourcing pattern. The query side uses one or more read-optimised state stores, which contain state derived from the events generated by the command side.