redis-on-mysql 0.0.1

A Redis-compatible proxy that stores all data and Pub/Sub state in MySQL
Documentation
1
2
3
4
5
6
7
/// Runtime configuration for the proxy.
pub mod config;
/// Redis command handlers and router builder.
pub mod handlers;
/// Shared application state for the proxy runtime.
pub mod state;
mod storage;