tinyredis 1.0.0

A Redis-compatible server written in Rust. Uses RESP2, persists writes to an append-only file, and accepts connections from any standard Redis client.
Documentation
1
2
3
4
5
6
7
8
9
pub mod commands;
pub mod config;
pub mod connection;
pub mod error;
pub mod parser;
pub mod persistence;
pub mod server;
pub mod stats;
pub mod store;