zio-event-sourcing
zio-event-sourcing copied to clipboard
Purely functional concurent and scalable persistance layer implementing CQRS
Results
3
zio-event-sourcing issues
Sort by
recently updated
recently updated
newest added
Hi there, event sourcing is a good thing and zio is a good thing, is this finished or discontinued? Is Akka the only event sourcing I can do from Scala...
In `def append(evt: E): Task[Aggregate[E, S]]`, the code seem to first persist events and then reduce the aggregate after: https://github.com/holinov/zio-event-sourcing/blob/master/core/src/main/scala/zio/es/EventJournal.scala#L21 This means you could end up persisting invalid events into...