About 118,000 results
Open links in new tab
  1. CQRS Pattern - Azure Architecture Center | Microsoft Learn

    Feb 21, 2025 · Learn how to segregate operations that read data from operations that update data by using the Command Query Responsibility Segregation (CQRS) pattern.

  2. CQRS - Command Query Responsibility Segregation Design Pattern

    May 13, 2026 · Command Query Responsibility Segregation (CQRS) is an architectural pattern that improves scalability and performance by separating read and write operations into distinct models.

  3. CQRS - Martin Fowler

    Jul 14, 2011 · CQRS stands for Command Query Responsibility Segregation. It's a pattern that I first heard described by Greg Young. At its heart is the notion that you can use a different model to …

  4. CQRS pattern - AWS Prescriptive Guidance

    The command query responsibility segregation (CQRS) pattern separates the data mutation, or the command part of a system, from the query part. You can use the CQRS pattern to separate updates …

  5. Command Query Responsibility Segregation - Wikipedia

    In information technology, Command Query Responsibility Segregation (CQRS) is a software architecture that extends the idea behind command–query separation (CQS) to the level of services. …

  6. Command query responsibility segregation introduction

    Command query responsibility segregation (CQRS) is an application architecture pattern. It consists of separating the logic that handles commands from the logic that handles queries. CQRS allows you to …

  7. CQRS Architecture: How It Works - Medium

    Oct 3, 2024 · CQRS, or Command Query Responsibility Segregation, is a design pattern initially introduced by Greg Young and described in Martin Fowler’s work on microservices.

  8. Command Query Responsibility Segregation (CQRS) - Confluent

    The CQRS pattern helps separate application operations to read and write data in a scalable way. Learn how CQRS works, its benefits, and how to get started.

  9. CQRS Pattern (Command Query Responsibility Segregation): Complete …

    Dec 23, 2025 · This guide explains the CQRS pattern in depth, how it works, when to use it, and how it pairs with event sourcing to support modern, distributed, cloud-native applications.

  10. CQRS (command query responsibility segregation) - TechTarget

    May 31, 2024 · CQRS is a software architecture pattern in which the responsibilities of a system's commands and queries are segregated by vertically slicing the application logic.