CQRS with persistence, in-memory database - Haskell

Welcome to the Functional Programming Zulip Chat Archive. You can join the chat here.

Sridhar Ratnakumar

Is there such a thing in Haskell?

cf. https://github.com/DevrexLabs/memstate

All operations (commands) are written to persistent storage and used to restore the state of the in-memory object graph when a node starts up. The log is a complete audit trail of every single change to the system and can be used to recreate the state of the graph at any given point in time. A point-in-time snapshot can be used for queries or historical debugging.

In-memory event-sourced ACID-transactional distributed object graph engine for .NET Standard - DevrexLabs/memstate