Home
Dio
Cancel

Command Query Responsibility Segregation [CQRS]

There are moments when the patterns used for querying the models of an application are far different from those used for managing its life cycle. The CQRS pattern talks about that, how to separate ...

The outbox pattern

Problem Let’s picture a common scenario where we have a service that manages Products and our customer wants to change a property of a given product, let’s say its price. Several other systems mig...