Insanely fast Rust key-value store
Featured on Hacker News
89 points
A high-performance key-value store built with Rust
Optimized for extreme performance and low latency operations
Built in Rust with zero-cost abstractions and compile-time safety
Clean, intuitive interface for easy integration
Battle-tested architecture for real-world applications
Benchmarked speed and efficiency
use turbokv::Store;
let store = Store::open("/path/to/db")?;
store.put("key", "value")?;
let value = store.get("key")?;
store.delete("key")?;
Simple and intuitive API for seamless integration
Experience the speed and safety of TurboKV