rusty dictionary server
Rudis 是一款用 Rust 编写,多线程处理,兼容 redis 的数据库。它有着比 Redis 更优秀的性能,解决了一些 Redis 的常见问题。
-
兼容 redis client
-
比 redis 的效率更高
- 用 rust 实现,可以写出更安全高效的多线程数据引擎
- 更高的 io 效率
- 对大 key 优化
- 对热 key 优化
-
比 redis 的坑更少
- 使用 rust 减少各种内存安全上的 bug
- 过期数据及时清理
-
比 redis 更好运维
- 更容易管理的集群
- 随意的横向扩容
- 自动主从切换
- 自动调度热 slot
- 免责申明 请暂时不要用于生产环境。
- 如果你很在意稳定性,推荐用Redis. Rudis is beta.
- PD 模块没有测试过,暂时不是高可用的,可能会出现单点故障问题
- 暂时只支持 linux 和 macos
- 准备最新版的 rust 工具链
- clone 代码
git clone [email protected]:liangyongrui/rudis.git
- 依次执行
cd rudis
cargo build --release
./target/release/server
(指定启动地址:RUDIS_server_addr=0.0.0.0:6379 ./target/release/server
)
- 通过 Redis TCL test
- 完成高可用 pd
Rudis 的性能比 Redis 6.2.5 更好。 查看详情
Contributions are always welcomed! Please refer to CONTRIBUTING for detailed guidelines.
This project is licensed under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in rudis by you, shall be licensed as MIT, without any additional terms or conditions.