Francesc TravesaforCesc blognemampojma.hashnode.net·Mar 29, 2023User service with CQRS + ES example in Rust (Part 3)In this part we will have a break of ES and focus on modeling the domain and building the hexagonal architecture. If you want to do real DDD, there's no going around modeling the domain. It's a necessary task and one of my favorites. Remember there i...Discuss·10 likes·27 readsDevelop with me#CQRS
Francesc TravesaforCesc blognemampojma.hashnode.net·Dec 11, 2022User service with CQRS + ES example in Rust (Part 2)It's not 100% finished and there are many things to polish. Especially taking into account my beginner level of Rust, but let me start by explaining a little bit about how it all works. Let's remember first the requirements from the previous blog pos...Discuss·2 likes·66 readsDevelop with meRust
Francesc TravesaforCesc blognemampojma.hashnode.net·Sep 26, 2022User service with CQRS + ES example in Rust (Part 1)I am going to show you a possible approach to Event Sourcing and CQRS with rust. This is a service that I am going to use in an ecosystem of services for my personal project. This service will deal only with identity. The one and only requisite at th...Discuss·1 like·70 readsDevelop with meRust
Lee Nattressfor3t Engineering Blogleenattress3t.hashnode.net·Apr 13, 2023The basics of event-driven architectureEvent-driven architecture is a software design pattern that is used to build scalable and loosely-coupled applications. At the heart of this architecture is the concept of an "event", which is any change in state that is important to the system. Exam...Discuss·47 readsevent-driven-architecture
Charles FarrisforSleeping Bear Systemscharlesfarris71.hashnode.net·Apr 3, 2023ArtShowTools: Part 2In my previous post (ArtShowTools: Part 1), I created the first draft of the domain model. In this post, I'll describe some of the prototyping I've been doing in F#. While I've worked with C# for nearly 20 years, I've only been working with F# for ab...DiscussArtShowToolsF#
Francesc TravesaforCesc blognemampojma.hashnode.net·Mar 29, 2023User service with CQRS + ES example in Rust (Part 3)In this part we will have a break of ES and focus on modeling the domain and building the hexagonal architecture. If you want to do real DDD, there's no going around modeling the domain. It's a necessary task and one of my favorites. Remember there i...Discuss·10 likes·27 readsDevelop with me#CQRS
Francesc TravesaforCesc blognemampojma.hashnode.net·Dec 11, 2022User service with CQRS + ES example in Rust (Part 2)It's not 100% finished and there are many things to polish. Especially taking into account my beginner level of Rust, but let me start by explaining a little bit about how it all works. Let's remember first the requirements from the previous blog pos...Discuss·2 likes·66 readsDevelop with meRust
Francesc TravesaforCesc blognemampojma.hashnode.net·Sep 26, 2022User service with CQRS + ES example in Rust (Part 1)I am going to show you a possible approach to Event Sourcing and CQRS with rust. This is a service that I am going to use in an ecosystem of services for my personal project. This service will deal only with identity. The one and only requisite at th...Discuss·1 like·70 readsDevelop with meRust
Mehmet Sezerformehmetsezer.hashnode.net·Aug 22, 2022A Command Bus Solution for CQRS and Event Sourcing Patterns: kediatRUnderstanding the problem First, let’s start with a microservice architecture which is developed by using a database per service pattern. Initially, it seems okay, but consider the following situations: 1- If it is desired to separate the write and...Discuss·126 readsKotlin