2 repository-uri
Accesses stored key-value pairs through a BTreeMap-like interface that preserves key order and supports range queries.
Distinct from Ordered Data Structures: Distinct from Ordered Data Structures: focuses on the access interface for ordered data, not just the preservation of insertion order.
Explore 2 awesome GitHub repositories matching data & databases · Ordered Map Data Access. 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 ordered map data access through a BTreeMap interface with range query support.
Aceasta este o implementare a structurii de date B-Tree în memorie pentru Go. Oferă o colecție rezidentă în memorie care menține elementele sortate pentru a permite regăsirea, modificarea și gestionarea eficientă a map-urilor sortate de tip cheie-valoare. Proiectul suportă colecții mutabile ordonate și stocuri sortate de tip cheie-valoare, permițând căutări, inserări și ștergeri rapide, păstrând în același timp ordinea sortării cheilor. Oferă capabilități pentru căutarea în intervale în cadrul structurilor de memorie sortate și menține organizarea seturilor de date prin divizarea nodurilor cu auto-echilibrare și căutare binară recursivă.
Provides a BTreeMap-like interface for key-value pairs that preserves key order.