Crates.io | kraglin |
lib.rs | kraglin |
version | 0.1.0 |
source | src |
created_at | 2024-04-18 10:28:07.219037 |
updated_at | 2024-04-18 10:28:07.219037 |
description | A pure-rust, RESP3-compliant Redis alternative. |
homepage | https://github.com/kraglin-rs/kraglin |
repository | https://github.com/kraglin-rs/kraglin |
max_upload_size | |
id | 1212387 |
size | 77,965 |
Kraglin is planned to be a rust-based, lightweight, lightning-fast replacement for Redis.
The central trait is Backend
, which defines the execute()
method, taking a Command
which holds key names and Value
s. By defining tests and benchmarks generically on the Backend
trait, we allow for highly exchangeable backend implementations. We intend to do the same for the frontend, but this is not built yet because the project is young.
We aim to be RESP3-compliant.