1 Repo
Accesses stored key-value pairs through a familiar ordered-map interface without writing raw database queries.
Distinct from Query Interfaces: Distinct from Query Interfaces: specifies the BTreeMap ordered-map interface, not general query APIs.
Explore 1 awesome GitHub repository matching data & databases · BTreeMap. Refine with filters or upvote what's useful.
redb is an embedded key-value store and ACID-compliant storage engine. It functions as a persistent storage system for saving and retrieving data as key-value pairs within a tree structure. The engine is built as an MVCC transactional database, utilizing multi-version concurrency control to manage simultaneous reads and writes without blocking. It employs a single-writer multi-reader model to ensure data consistency while allowing multiple threads to access the store. The system provides persistent state management and atomic transaction management to prevent data corruption during crashes.
Provides a BTreeMap query interface for ordered key-value access without raw query syntax.