The architectural pattern that explicitly separates data modification logic from data retrieval logic is Command Query Responsibility Segregation, commonly known as CQRS. In a traditional system, the same data model is often used for both updating information, known as the command side, and reading information, known as the query side. CQRS splits the ....
Log in to view the answer