You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MemoraDB is a high-performance in-memory database (IMDB) designed for ultra-low latency key-value storage and operations, featuring RESP protocol compliance, atomic commands, and TTL-based expiry. Optimized for microsecond response times, it's ideal for real-time applications like caching and session stores.
In-memory key–value store with LRU eviction, hash–list indexing, sustaining <10µs access latency and persistent retrieval at ~1–2ms, epoll-based TCP server handling 10K+ concurrent connections with the RESP-2 protocol for scalable client–server communication. Benchmarked extensively via redis-benchmark achieving 92K GETs/sec and 84K SETs/sec .
Embedded Redis Server is a lightweight, in-process Redis-compatible server written in Kotlin. Designed for testing, development, and CI/CD pipelines. Features Spring Boot auto-configuration, RESP2 protocol support, and zero external dependencies. Use it just like H2 Database - simply add the dependency and start coding!
A multi-threaded, persistent Key-Value store in Go. Features a custom RESP parser, fine-grained concurrency (RWMutex), and sustains 440k+ req/s in benchmarks