awesome-repositories.com
Blog
MCP
awesome-repositories.com

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

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

34 repositorios

Awesome GitHub RepositoriesKey-Value Stores

High-performance databases for simple key-value data retrieval.

Explore 34 awesome GitHub repositories matching part of an awesome list · Key-Value Stores. Refine with filters or upvote what's useful.

Awesome Key-Value Stores GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • coreos/etcdAvatar de coreos

    coreos/etcd

    51,846Ver en GitHub↗

    etcd is a distributed key-value store and configuration store designed to maintain a consistent set of data across a cluster of nodes. It functions as a reliable registry for storing and synchronizing critical settings and metadata used by distributed applications. The system implements the Raft consensus algorithm to ensure data consistency and leader election across servers. To protect data transfers and verify node identities, it utilizes a network security layer based on mutual TLS and client certificates. Its capabilities cover distributed configuration management, cluster state synchro

    Reliable distributed key-value store for critical system data.

    Go
    Ver en GitHub↗51,846
  • hashicorp/consulAvatar de hashicorp

    hashicorp/consul

    29,943Ver en GitHub↗

    Consul is a distributed coordination service and service mesh tool used for service discovery, health monitoring, and cluster state management across dynamic networks. It provides a platform for locating network addresses of services and managing traffic across distributed infrastructure using DNS and HTTP interfaces. The project distinguishes itself through multi-datacenter network orchestration, enabling the federation of services across different regions using mesh gateways. It secures communication via a service mesh architecture that employs identity-based authorization and mutual TLS en

    Distributed key-value store for service discovery and configuration.

    Goapi-gatewayconsulecs
    Ver en GitHub↗29,943
  • redisson/redissonAvatar de redisson

    redisson/redisson

    24,355Ver en GitHub↗

    Redisson is a Java library and Redis client that functions as a distributed Java object mapper, caching provider, and locking framework. It maps Java collections and concurrency primitives to distributed implementations backed by Redis and Valkey, providing synchronous, asynchronous, and reactive APIs for interacting with these data stores. The project distinguishes itself by providing a comprehensive suite of distributed coordination tools, including a locking framework for managing semaphores and countdown latches across multiple application nodes. It also serves as a distributed messaging

    A feature-rich Redis client for Java with distributed object support.

    Java
    Ver en GitHub↗24,355
  • pingcap/tikvAvatar de pingcap

    pingcap/tikv

    16,724Ver en GitHub↗

    TiKV is a cloud-native distributed transactional key-value store and storage engine. It provides a distributed database designed for horizontal scalability and strong consistency across a cluster of physical nodes. The system uses a Raft-based consensus mechanism to maintain data availability and state synchronization. It ensures ACID compliance for distributed transactions through a two-phase commit workflow and manages data distribution via multi-Raft sharding. The engine handles massive datasets using automated range splitting and cluster load balancing to distribute data across different

    Distributed key-value database powered by Rust.

    Rust
    Ver en GitHub↗16,724
  • dgraph-io/badgerAvatar de dgraph-io

    dgraph-io/badger

    15,666Ver en 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

    Embeddable, persistent, and fast key-value database.

    Godatabasedocument-databasego
    Ver en GitHub↗15,666
  • 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

    Embedded key-value database for Go applications.

    Go
    Ver en GitHub↗14,642
  • dicedb/diceAvatar de DiceDB

    DiceDB/dice

    10,760Ver en GitHub↗

    Dice is a low-latency key-value store based on Valkey that functions as a hierarchical storage engine. It combines a high-speed memory store with a tiered cache system to manage data across multiple storage levels. The system extends memory capacity by implementing a disk-backed cache that automatically persists evicted items to disk and restores them during cache misses. This storage tiering balances retrieval speed and operational cost by distributing data between fast memory and slower disk storage. The engine includes a query subscription service that monitors specific data patterns and

    Implements a high-performance data store utilizing the Valkey protocol for key-value management.

    C
    Ver en GitHub↗10,760
  • tidwall/tile38Avatar de tidwall

    tidwall/tile38

    9,672Ver en GitHub↗

    Tile38 is an in-memory geospatial database that uses the Redis protocol for communication and query execution. It serves as a distributed spatial store for points and polygons, featuring high availability through leader-follower replication and disk-based persistence. The system includes a real-time geofencing engine that monitors virtual geographic boundaries and triggers webhooks when objects enter or exit specified areas. It further distinguishes itself with an embedded Lua scripting engine for server-side data transformations and a built-in vector tile server for efficient map visualizati

    Geolocation data store with spatial indexing and geofencing.

    Go
    Ver en GitHub↗9,672
  • patrickmn/go-cacheAvatar de patrickmn

    patrickmn/go-cache

    8,828Ver en GitHub↗

    go-cache is a thread-safe, in-memory cache library for Go that stores arbitrary objects with per-item expiration timestamps. It provides a concurrent key-value store where multiple goroutines can safely read and write shared cached data without external synchronization, using a mutex-guarded map for access control. The library distinguishes itself through its expiration management and optional disk persistence. Each cached item carries its own time-to-live, and a background goroutine periodically purges expired entries. The cache can serialize its entire contents to disk using Go's gob encodi

    In-memory key-value cache for single-machine applications.

    Gocachegolibrary
    Ver en GitHub↗8,828
  • nats-io/nats.goAvatar de nats-io

    nats-io/nats.go

    6,657Ver en GitHub↗

    This is a Golang client library for interacting with a cloud native distributed messaging system. It provides the necessary tools for Go applications to exchange messages using publish-subscribe and request-reply patterns, as well as specialized clients for managing persistent streams and distributed storage. The library includes a JetStream client for durable message streaming and replay, a Key-Value store client for managing distributed state with versioning and watchers, and an Object Store client for the storage and retrieval of large binary files via chunked delivery. The implementation

    Provides access to a chronological log of values and delete operations associated with specific keys.

    Gocloud-nativecloud-native-architecturescloud-native-microservices
    Ver en GitHub↗6,657
  • cockroachdb/pebbleAvatar de cockroachdb

    cockroachdb/pebble

    5,777Ver en 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

    Reads stored values by key, returning the associated data and a handle for resource cleanup.

    Go
    Ver en GitHub↗5,777
  • airtai/faststreamAvatar de airtai

    airtai/faststream

    5,234Ver en GitHub↗

    FastStream is an asynchronous Python framework designed for building event-driven microservices. It provides a unified abstraction layer for interacting with various message brokers, enabling developers to manage event production and consumption through a consistent interface while maintaining access to native provider-specific features. The framework centers on a decorator-based routing model that binds application logic directly to broker topics, supported by a built-in dependency injection container that resolves resources at runtime. The framework distinguishes itself through its deep int

    Persists data in distributed buckets where keys map to subjects for historical revision retrieval.

    Python
    Ver en GitHub↗5,234
  • roseduan/rosedbAvatar de roseduan

    roseduan/rosedb

    4,882Ver en GitHub↗

    RoseDB es una base de datos embebida de clave-valor y un motor de almacenamiento estructurado en registros (log-structured). Funciona como una base de datos basada en librería que se ejecuta dentro de un proceso de aplicación para proporcionar persistencia de datos local sin necesidad de un servidor de base de datos separado. El proyecto implementa un almacén al estilo Bitcask, utilizando un formato de registro de solo adición (append-only) para maximizar el rendimiento de escritura y minimizar el tiempo de búsqueda. Garantiza la consistencia de los datos agrupando múltiples operaciones de lectura y escritura en unidades atómicas únicas. La arquitectura de almacenamiento se basa en un índice de claves en memoria para búsquedas de tiempo constante y utiliza gestión de archivos basada en segmentos para manejar la compactación de datos y la recuperación de espacio en disco.

    Fast embedded key-value database supporting multiple data types.

    Go
    Ver en GitHub↗4,882
  • tidwall/buntdbAvatar de tidwall

    tidwall/buntdb

    4,834Ver en GitHub↗

    BuntDB is an embedded key-value store for Go applications, providing in-memory storage with optional disk persistence. It structures data using a B-tree for ordered key-value access and an R-tree for spatial indexing, allowing both range scans and geometric intersection queries. Support for indexing on nested JSON document fields enables efficient lookups by values within JSON objects, and per-key time-to-live (TTL) expiration automatically removes stale entries. The store uses copy-on-write transaction isolation, ensuring each transaction sees a consistent snapshot and changes are applied at

    Fast, embeddable, in-memory key-value store for Go.

    Godatabasegeospatialgolang
    Ver en GitHub↗4,834
  • basho/riakAvatar de basho

    basho/riak

    4,023Ver en GitHub↗

    Riak is a decentralized NoSQL key-value store designed for high availability and fault tolerance. It is a Dynamo-style distributed database that utilizes consistent hashing and eventual consistency to scale data across a cluster of nodes. The system functions as a geo-replicated datastore, synchronizing data across multiple physical locations to provide disaster recovery and maintain availability during regional outages. It employs a multi-master replication model, allowing writes to any node in the cluster. The platform covers broad capability areas including decentralized cluster coordinat

    Decentralized, fault-tolerant key-value datastore.

    Shell
    Ver en GitHub↗4,023
  • tarantool/tarantoolAvatar de tarantool

    tarantool/tarantool

    3,642Ver en GitHub↗

    Get your data in RAM. Get compute close to data. Enjoy the performance.

    Efficient NoSQL database and Lua application server.

    Lua
    Ver en GitHub↗3,642
  • xujiajun/nutsdbAvatar de xujiajun

    xujiajun/nutsdb

    3,568Ver en GitHub↗

    A simple, fast, embeddable, persistent key/value store written in pure Go. It supports fully serializable transactions and many data structures such as list, set, sorted set.

    Embeddable persistent key-value store supporting complex data structures.

    Go
    Ver en GitHub↗3,568
  • josiahcarlson/redis-in-actionAvatar de josiahcarlson

    josiahcarlson/redis-in-action

    2,266Ver en GitHub↗

    Example code from the book

    Source code and examples accompanying a practical guide to Redis.

    Python
    Ver en GitHub↗2,266
  • flower-corp/lotusdbAvatar de flower-corp

    flower-corp/lotusdb

    2,253Ver en GitHub↗

    Most advanced key-value database written in Go, extremely fast, compatible with LSM tree and B+ tree.

    High-performance key-value storage using LSM and B+ tree structures.

    Go
    Ver en GitHub↗2,253
  • kelindar/columnAvatar de kelindar

    kelindar/column

    1,510Ver en GitHub↗

    High-performance, columnar, in-memory store with bitmap indexing in Go

    In-memory columnar store with bitmap indexing and zero-alloc querying.

    Gobitmapcolumnar-storagedata-oriented
    Ver en GitHub↗1,510
Ant.12Siguiente
  1. Home
  2. Part of an Awesome List
  3. Databases & Data
  4. Key-Value Stores

Explorar subetiquetas

  • Key Version HistoryChronological logs of modifications and deletions for specific keys in a store. **Distinct from Key-Value Stores:** Focuses on the temporal history of a key's value rather than simple retrieval or deletion.
  • NVMe-Optimized StoresOptimizes key-value storage for modern SSDs using sharded data structures and reduced sorting to minimize CPU overhead. **Distinct from Key-Value Stores:** Distinct from Key-Value Stores: focuses on storage optimizations specific to NVMe drives, not general key-value storage.