Event sourcing infrastructure implementation

前端 未结 5 1363
暗喜
暗喜 2021-02-07 11:18

I implement Event Sourcing and CQRS pattern in my application. I inspired by CQRS journey where I downloaded sample code. There I found whole infrastructure for Event sourcing (

5条回答
  •  无人及你
    2021-02-07 12:17

    I've recently open sourced my Java implementation of an event sourcing (database) framework, Eventsourcing for Java. However, the plan is to have multiple language implementations down the road, including .NET. That's why there's an ongoing effort to specify the fundamentals.

    My implementation is focused more on the faithful command/event capture with a lazy "read side" rather than pro-active application of every event.

提交回复
热议问题