Module transact::database::btree

source ·
Expand description

An in-memory implementation of the database traits.

This in-memory implementation of the Database uses a BTree map. All keys are sorted by their natural order.

Atomicity is provided via a RwLock.

Structs