CQRS in Java: Separating Reads and Writes Cleanly
The Command Query Responsibility Segregation (CQRS) pattern is a design method that segregates data access into separate services for …

Mike LaSpina
1,585 viewsThe Command Query Responsibility Segregation (CQRS) pattern is a design method that segregates data access into separate services for …

Mike LaSpina
2,017 viewsIn a recent design review, a customer was enriching new data as it came in. As the enrichment process was fairly complex, they ran into some …

Mike LaSpina
5,659 viewsThe repository pattern is a design method that allows for abstraction between business logic and the data of an application. This allows for …