awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 repositorios

Awesome GitHub RepositoriesSingle-Writer Multi-Reader Locking

A concurrency model that allows multiple concurrent readers while restricting write access to a single transaction.

Distinct from Single-Writer-Single-Reader Optimizations: The candidates (f7_mt1-f7_mt5) refer to specialized producer-consumer queues or UI views, not database transaction locking.

Explore 4 awesome GitHub repositories matching data & databases · Single-Writer Multi-Reader Locking. Refine with filters or upvote what's useful.

Awesome Single-Writer Multi-Reader Locking GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • boltdb/boltAvatar de boltdb

    boltdb/bolt

    14,642Ver en GitHub↗

    Bolt is a single-file embedded key-value store for Go applications. It is an ACID transactional database that organizes data in B+trees on disk to provide efficient sorted key retrieval and range scans. The system uses a memory-mapped model to map the database file directly into the process address space for fast random-access reads. The project distinguishes itself through a multi-version concurrency control architecture that allows multiple simultaneous readers to access a consistent snapshot of data without blocking a writer. It employs a single-writer multi-reader locking model and uses a

    Ensures data consistency by allowing multiple simultaneous read-only transactions while permitting only one active writer.

    Go
    Ver en GitHub↗14,642
  • etcd-io/bboltAvatar de etcd-io

    etcd-io/bbolt

    9,573Ver en GitHub↗

    bbolt is an ACID-compliant embedded key-value store for Go applications. It persists all data in a single memory-mapped file on disk, organizing information using B+ trees to facilitate sorted key iteration and efficient range queries. The project distinguishes itself through a hierarchical data organization model, allowing buckets to be nested within other buckets to create a tree-like structure. It employs a single-writer, multi-reader locking mechanism and copy-on-write transactions to ensure serializable isolation and data integrity. The system includes comprehensive data management capa

    Employs a single-writer multi-reader locking mechanism to coordinate concurrent access to the database.

    Go
    Ver en GitHub↗9,573
  • cberner/redbAvatar de cberner

    cberner/redb

    4,248Ver en 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.

    Employs a single-writer multi-reader locking model for coordinated concurrent access.

    Rustrust
    Ver en GitHub↗4,248
  • lmdb/lmdbAvatar de LMDB

    LMDB/lmdb

    2,907Ver en GitHub↗

    LMDB is an embedded key-value storage engine that provides ACID-compliant data persistence. It is a memory-mapped database that utilizes B+ trees to store key-value pairs, ensuring atomicity, consistency, isolation, and durability. The engine maps files directly into the virtual address space to minimize data copying and system calls. This approach enables high-performance local caching and low-latency data access, specifically optimizing for read-heavy database workflows. The system implements a transactional model with copy-on-write versioning and single-writer multi-reader locking. These

    Implements a concurrency model allowing multiple concurrent readers while restricting write access to a single transaction.

    C
    Ver en GitHub↗2,907
  1. Home
  2. Data & Databases
  3. Single-Writer Multi-Reader Locking