Reputation: 472
The CQRS pattern splits the application into two parts: the command side and the query side. The command side handles create, update, and delete requests. The query side runs the query part by using the read replicas.
This thing can be achieved in Monolithic architecture as well, there also we could have a write replica and read replica. Then Why this pattern is called as a Microservices Design Pattern.
Can somebody explain this and correct me if my understanding is wrong about it?
Upvotes: 2
Views: 960
Reputation: 1136
CQRS is one of several application architecture patterns. It does not depend upon how the application is deployed.
Upvotes: 0