awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateBlogHartă site
ProiectDesprePresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
awesome-repositories.comBlog
Categorii

2 repository-uri

Awesome GitHub RepositoriesOrdered Map Data Access

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.

Awesome Ordered Map Data Access GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • cberner/redbAvatar cberner

    cberner/redb

    4,248Vezi pe GitHub↗

    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.

    Rustrust
    Vezi pe GitHub↗4,248
  • google/btreeAvatar google

    google/btree

    4,166Vezi pe GitHub↗

    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.

    Go
    Vezi pe GitHub↗4,166
  1. Home
  2. Data & Databases
  3. Ordered Data Structures
  4. Ordered Map Data Access

Explorează sub-etichetele

  • Insertion Order Preserving MapsMaps that maintain the sequence of elements as they were added. **Distinct from Ordered Map Data Access:** Distinct from Ordered Map Data Access which usually implies key-sorting (BTree), whereas this focuses on insertion order.