Siddhartha Soxyprogrammer.com·Nov 18, 2024Understanding CQRS and Event Sourcing: A Path to More Robust Distributed SystemsIntroduction Distributed systems are all the rage these days! With system design gaining traction in the software world, everyone is eager to learn and implement distributed systems. They (Distributed Systems) undoubtedly have their merits and provid...DiscussDistributed Systems#CQRS
Gabriel Eguiablog.gme.com.ar·Sep 3, 2024Arquitectura hexagonal y otras yerbas con Java y Spring 4Esta es la cuarta parte de una serie que comenzó llamándose “Arquitectura Hexagonal con Java y Spring”. En esta nueva entrega vamos a hablar de cómo una decisión que tomamos en la entrega anterior puede ocasionar que no cumplamos con uno de los princ...DiscussArquitectura hexagonal y otras yerbas con Java y SpringJava
Ujjwal Singhujjwal-ghatani-dev.hashnode.dev·Aug 31, 2024Understanding CQRS: Simplifying Your Code by Splitting ResponsibilitiesWhen building complex systems, managing the codebase can become challenging as your application grows. One common issue developers face is the blurring of responsibilities within classes, where both reading and modifying data are handled together. Th...Discuss#CQRS
Gabriel Eguiablog.gme.com.ar·Aug 27, 2024Arquitectura Hexagonal con Java y Spring 3 + CQRS / Casos de usoEsta es la tercera parte de una serie, que comenzó llamándose “Arquitectura Hexagonal con Java y Spring”. Ciertamente, creo que el título nos quedó “corto” porque, además de conceptos de arquitectura hexagonal, también hemos visto algunas cosas de Ar...DiscussArquitectura hexagonal y otras yerbas con Java y SpringCasos de uso
EUGINE OCHUNG'eugineochung-codes.hashnode.dev·Aug 12, 2024Modern Accounting Software Design Patterns and Architecture : A deep diveIn the dynamic world of fintech, traditional accounting methods are evolving rapidly. With the advent of modern technologies and the increasing complexity of financial services, fintech companies are adopting innovative accounting patterns and archit...Discuss·1 likeModern Accounting Architecture and Design Patterns:A seriesfintech
Abdullah Sajjadblog.abdullahsajjad.me·Aug 4, 2024MediatR Pipeline BehaviorsWhat are MediatR Pipeline Behaviors? Pipeline behaviors in MediatR are akin to middleware in ASP.NET Core. They allow you to define a series of steps that a request goes through before reaching its final handler. This can be useful for cross-cutting ...Discuss·188 readsMediatR
Abdullah Sajjadblog.abdullahsajjad.me·Aug 3, 2024Understanding CQRS and MediatR in .NET for Better ArchitectureIn the world of software architecture, achieving a clean, maintainable, and scalable system is paramount. Two patterns that significantly contribute to this goal are Command Query Responsibility Segregation (CQRS) and the MediatR library in .NET. Thi...Discuss·1 like·113 readsC#
Karthik Anishkarthikanish.hashnode.dev·Jul 23, 2024Harnessing Real-Time Data Processing with Bigtable, Dataflow, and BigQuery: A CQRS ApproachUsing Google Cloud Bigtable, Dataflow, and BigQuery together creates a powerful architecture for real-time data processing and analytics, exemplifying the Command Query Responsibility Segregation (CQRS) pattern. This blog will explore how these techn...Discuss#CQRS
Mahidhar Mullapuditutorialq.hashnode.dev·Jul 15, 2024Implementing CQRS and Event Sourcing in Distributed SystemsIntroduction As software systems grow in complexity, the need for scalable and maintainable architectures becomes paramount. Two powerful patterns that address these needs are Command Query Responsibility Segregation (CQRS) and Event Sourcing. By lev...Discuss·1 likeJava
Tomohisa Takaokatomohisa.hashnode.dev·Jun 19, 2024How CQRS and Its Implementation Become Simpler with Railway Oriented ProgrammingRecently, I have been creating ResultBoxes to practice Railway Oriented Programming, which involves using the Result pattern for error handling and chaining data pipelines together with functions. https://github.com/J-Tech-Japan/ResultBoxes What is...Discuss·56 readsRailway-Oriented