awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

Internes des bases de données et moteurs de stockage

Classement mis à jour le 30 juin 2026

For programme sur le fonctionnement interne des bases de données, the strongest matches are cmu-db/bustub (Bustub is a purposely-built educational relational database engine from), microsoft/faster (FASTER is a production-grade key-value storage engine with disk-backed) and rosedblabs/rosedb (RoseDB is a persistent key-value storage engine written in). spacejam/sled and oceanbase/miniob round out the shortlist. Each is ranked by relevance to your query, popularity and recent activity.

Explorez des implémentations open source de moteurs de stockage, de structures d'indexation et d'architectures fondamentales de systèmes de gestion de bases de données.

Internes des bases de données et moteurs de stockage

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • cmu-db/bustubAvatar de cmu-db

    cmu-db/bustub

    4,861Voir sur GitHub↗

    This is an educational relational database engine used in Carnegie Mellon University's database systems course. Students learn internals by implementing core components of a working database, including storage, indexing, concurrency control, and crash recovery. The system covers key database architecture: a B+ tree index for fast key-based lookups and range scans, a disk-oriented buffer pool that caches pages from disk, an iterator-based query execution model that composes physical operators, page-based storage for records, two-phase locking for coordinating concurrent transactions, and write

    Bustub is a purposely-built educational relational database engine from CMU's database course that covers storage, indexing, concurrency control, and crash recovery, making it an ideal hands-on learning resource for database internals.

    C++B+ Tree IndexingDatabase Buffer PoolsWrite-Ahead Logging
    Voir sur GitHub↗4,861
  • microsoft/fasterAvatar de microsoft

    microsoft/FASTER

    6,606Voir sur GitHub↗

    FASTER is a high-throughput key-value store that combines an in-memory data store with a hybrid memory-disk storage engine, enabling datasets larger than available RAM. It uses a latch-free, cache-optimized index for concurrent point lookups and heavy updates, and records all mutations to a persistent append-only log on disk with checksum validation and group-commit checkpointing for crash recovery. The system supports multi-key transactional workloads through atomic multi-key locking, ensuring transactional consistency without coarse-grained contention. It exposes the key-value store to remo

    FASTER is a production-grade key-value storage engine with disk-backed persistence, write-ahead logging, and multi-key transactional locking, which fits the category but is narrower than a general relational database engine—it uses a hash-table index instead of a B-tree and does not include SQL parsing or an interactive query shell.

    C#Key-ValueKey-Value StoresWrite-Ahead Logging
    Voir sur GitHub↗6,606
  • rosedblabs/rosedbAvatar de rosedblabs

    rosedblabs/rosedb

    4,878Voir sur GitHub↗

    RoseDB is a persistent key-value database and log-structured storage engine. It functions as a lightweight storage system that utilizes a log-structured hash table and a Bitcask engine implementation to provide fast data retrieval and disk-backed persistence. The system operates as an atomic transaction engine, grouping multiple read and write operations into single units to maintain data consistency. It handles data through a key-value model that supports individual insertions, lookups, and deletions. The database provides capabilities for batch data processing and atomic updates. Additiona

    RoseDB is a persistent key-value storage engine written in Go, using a log-structured (Bitcask) design with atomic transactions and disk-backed persistence, making it a valid database internals implementation—though it focuses on key-value storage rather than B-tree indexing or SQL parsing.

    GoKey-ValueKey-Value Persistence StoresKey-Value Stores
    Voir sur GitHub↗4,878
  • spacejam/sledAvatar de spacejam

    spacejam/sled

    8,928Voir sur GitHub↗

    Sled is an embedded key-value store and ACID-compliant database designed for high-performance data persistence. It functions as a log-structured storage engine that organizes data using B+ trees to support efficient range queries and prefix scans. The engine implements a zero-copy data store model, utilizing epoch-based reclamation to provide direct references to cached values without memory allocations. It distinguishes itself through a combination of write-ahead logging, page cache optimizations to reduce write amplification on flash storage, and serializable transactions for atomic multi-k

    Sled is a production-grade embedded key-value store and ACID-compliant database engine that implements B+ trees, write-ahead logging, and lock-free concurrency — squarely fitting the storage-engine category, though it lacks SQL parsing and relational metadata management, and is more a robust engine than a minimal educational project.

    RustB-TreeKey-ValueKey-Value Stores
    Voir sur GitHub↗8,928
  • oceanbase/miniobAvatar de oceanbase

    oceanbase/miniob

    4,318Voir sur GitHub↗

    MiniOB is an open-source educational relational database kernel designed for learning the internals of database systems. It implements a dual-engine storage architecture combining B+ Tree and LSM-Tree, supports SQL parsing and query execution, and provides transactional processing with multi-version concurrency control. The system communicates with clients using the MySQL wire protocol and includes a vector database extension for storing and querying high-dimensional vectors. The project distinguishes itself through its comprehensive coverage of core database concepts in a single, learnable c

    MiniOB is an educational relational database kernel that implements core storage engine concepts including B+ Tree indexing, SQL parsing, transaction processing with MVCC, and MySQL compatibility, making it an ideal learning resource for database internals.

    C++B+ Tree IndexingBuffer Pool Frame ManagersWrite-Ahead Logging
    Voir sur GitHub↗4,318
  • boltdb/boltAvatar de boltdb

    boltdb/bolt

    14,642Voir sur 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

    Bolt is a compact embedded key-value store that implements a B+tree index, ACID transactions with MVCC concurrency, and a memory-mapped storage model — making it a clear introductory example of storage engine internals, though it is limited to key-value storage and lacks SQL parsing or relational metadata management.

    GoB-TreeKey-ValueKey-Value Stores
    Voir sur GitHub↗14,642
  • facebook/rocksdbAvatar de facebook

    facebook/rocksdb

    31,767Voir sur GitHub↗

    RocksDB is a high-performance, embeddable persistent key-value library and storage engine based on Log-Structured Merge-trees. It is designed to provide durable storage for large-scale datasets, integrating directly into applications to manage data on flash and RAM-based hardware. The engine is distinguished by its focus on minimizing read and write amplification through multi-threaded compaction and custom memory allocators. It features specialized optimizations for flash storage, including support for zoned block devices, and provides the ability to extend store behavior via external plugin

    RocksDB is a production-grade embeddable key-value storage engine that implements core storage-engine concepts like write-ahead logging, compaction, and caching, but it uses an LSM-tree rather than a B-tree and lacks SQL parsing or an interactive query shell, so it fits the storage engine implementation category while being narrower in scope for educational study.

    C++Key-ValueKey-Value Persistence StoresKey-Value Stores
    Voir sur GitHub↗31,767
  • dgraph-io/badgerAvatar de dgraph-io

    dgraph-io/badger

    15,666Voir sur GitHub↗

    Badger is an embeddable key-value store written in Go that provides persistent data storage for byte keys and values. It is a persistent database that utilizes a tiered LSM tree storage model to optimize disk storage and retrieval efficiency. The system features an ACID transaction engine that ensures data integrity through serializable snapshot isolation and multi-version concurrency control. It also provides an encrypted key-value store with data-at-rest encryption and a managed encrypted key registry to secure stored information. The engine covers a broad set of capabilities including hig

    Badger is a production-grade embeddable key-value store built on an LSM tree with ACID transactions, making it a real storage engine implementation, but its focus on key-value storage and lack of SQL parsing or interactive shell mean it doesn't cover the full list of educational relational-database internals you're seeking.

    GoKey-ValueKey-Value Persistence StoresWrite-Ahead Logging
    Voir sur GitHub↗15,666
  • etcd-io/bboltAvatar de etcd-io

    etcd-io/bbolt

    9,573Voir sur 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

    bbolt is a real embedded key-value storage engine with B+ tree indexing and ACID transactions, squarely fitting the category of storage engine implementation, though it omits SQL parsing, a query shell, and buffer pool management, narrowing its scope to a key-value model rather than a full relational database.

    GoB-TreeKey-Value Stores
    Voir sur GitHub↗9,573
  • cockroachdb/pebbleAvatar de cockroachdb

    cockroachdb/pebble

    5,777Voir sur GitHub↗

    Pebble is an embedded key-value storage engine written in Go, designed as a library that provides durable, write-optimized data persistence directly within applications. It organizes data using a log-structured merge-tree (LSM-tree) structure, where writes are first buffered in an in-memory skiplist memtable and persisted to a write-ahead log before being flushed to block-based SSTable files on disk. The engine supports atomic batch commits, configurable write synchronization, and automatic background compaction that merges and rewrites sorted runs to reclaim space and maintain read performanc

    Pebble is a production-grade embedded key-value storage engine that demonstrates core internals like LSM-tree structure, write-ahead logging, and compaction, making it a relevant real-world example of storage engine design, though it lacks SQL parsing, B-tree indexing, and an interactive query shell for hands-on learning.

    GoKey-ValueWrite-Ahead Logging
    Voir sur GitHub↗5,777
  • apache/cassandraAvatar de apache

    apache/cassandra

    9,778Voir sur GitHub↗

    Cassandra is a distributed NoSQL database and wide-column store designed for high availability and linear scalability. It functions as a fault-tolerant distributed system that utilizes an LSM-tree storage engine to optimize write throughput and manage massive datasets. The system is a CQL-compliant database, using a structured query language to manage and retrieve tabular data stored across multiple nodes. It organizes information into rows and columns based on a flexible schema and primary keys. The project provides capabilities for horizontal database scaling, distributed data partitioning

    Cassandra is a full-scale distributed database with an LSM-tree storage engine, which fits the general category of storage engine implementations but is a production system rather than the minimal educational project this search prioritizes.

    JavaTabular Row StorageWrite-Ahead Logging
    Voir sur GitHub↗9,778
  • google/leveldbAvatar de google

    google/leveldb

    39,152Voir sur GitHub↗

    LevelDB is an embedded database library and persistent storage engine that provides a sorted key-value store. It uses a log-structured merge-tree architecture to map byte arrays to values, running directly within a process to provide storage without the need for a separate server process. The system is distinguished by its use of custom comparison functions to define key ordering, enabling efficient range scans and sequenced lookups. It ensures data reliability through atomic batch execution, consistent snapshot generation, and log-based recovery after failures. The engine covers broad capab

    LevelDB is a production-grade embedded key-value storage engine that implements core internals like log-structured merge-trees and write-ahead logging, making it a genuine storage engine implementation, though it lacks SQL parsing, B-tree indexing, and many of the other listed features.

    C++Key-ValueWrite-Ahead Logging
    Voir sur GitHub↗39,152
Comparez le top 10 en un coup d'œil
DépôtStarsLangageLicenceDernier push
cmu-db/bustub4.9KC++mit16 févr. 2026
microsoft/faster6.6KC#mit22 avr. 2025
rosedblabs/rosedb4.9KGoApache-2.010 févr. 2026
spacejam/sled8.9KRustapache-2.04 nov. 2025
oceanbase/miniob4.3KC++mulanpsl-2.024 déc. 2025
boltdb/bolt14.6KGoMIT2 mars 2018
facebook/rocksdb31.8KC++GPL-2.016 juin 2026
dgraph-io/badger15.7KGoApache-2.013 juin 2026
etcd-io/bbolt9.6KGoMIT22 juin 2026
cockroachdb/pebble5.8KGobsd-3-clause21 févr. 2026

Related searches

  • projet pour comprendre les bases de données en en construisant une
  • programme structuré pour l'auto-apprentissage de l'informatique
  • parcours d'étude sur les systèmes distribués
  • un kit de préparation aux entretiens de conception système senior
  • parcours étape par étape pour devenir data engineer
  • un guide pour lire des articles de recherche en informatique
  • programme d'apprentissage des réseaux informatiques
  • parcours d'étude pour les ingénieurs web3