Redis alternative - In-memory data structure server
Redis alternatifi - Bellek içi veri yapısı sunucusu
Async runtime
tokio = { version = "1", features = ["full"] }Gömülü veritabanı
sled = "0.34"Eşzamanlı hashmap
dashmap = "6"Copy this Cargo.toml to get started:
[package]
name = "my-key-value-store"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
sled = "0.34"
dashmap = "6"
thiserror = "1"
tracing = "0.1"