QuestionQ104

DevOps Fundamentals

Which of the following statements is true about the Command and Query Responsibility Segregation (CQRS) pattern?

  • A The main goal of CQRS is to reduce complexity.
  • B CQRS separates network access from filesystem access.
  • C CQRS separates read and update operations for a data store.
  • D CQRS separates front-end and back-end operations.
Explanation

CQRS separates commands that update data from queries that retrieve data, allowing read and write responsibilities to use distinct models and be optimized independently.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!