awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 个仓库

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

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • boltdb/boltboltdb 的头像

    boltdb/bolt

    14,642在 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
    在 GitHub 上查看↗14,642
  • etcd-io/bboltetcd-io 的头像

    etcd-io/bbolt

    9,573在 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
    在 GitHub 上查看↗9,573
  • cberner/redbcberner 的头像

    cberner/redb

    4,248在 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
    在 GitHub 上查看↗4,248
  • lmdb/lmdbLMDB 的头像

    LMDB/lmdb

    2,907在 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
    在 GitHub 上查看↗2,907
  1. Home
  2. Data & Databases
  3. Single-Writer Multi-Reader Locking