/statedb-core

In-memory state database for Go

Primary LanguageGoApache License 2.0Apache-2.0

📝 StateDB GoDoc

StateDB is an in-memory database for Go. It stores immutable objects in immutable radix trees, and thus supports multi-version concurrency control (MVCC) and transactional write transactions. Changes to the database can be watched at fine-granularity which allows reacting to changes in the database.

The library is inspired by go-memdb. The main differences to it are type-safety via generics, builtin object revision numbers and per-table locking rather than single database lock.