6 个版本
0.3.0 | 2023 年 1 月 11 日 |
---|---|
0.2.0 | 2021 年 3 月 26 日 |
0.1.1 | 2020 年 11 月 4 日 |
在 HTTP 服务器 中排名 1341
每月下载量 27 次
91KB
1.5K SLoC
actix-storage-redis
本 crate 提供了基于 redis
的 actix-storage 实现。
有关使用方法和用例的完整详细信息,请参阅 actix-storage crate 文档。
本 crate 中有 2 个不同的实现者
RedisBackend
RedisBackend
是一个完整的 expiry_store 实现。
// Connecting to the redis instance on localhost without username/password(for dev env)
let store = RedisBackend::connect_default().await?;
// OR connect with the provided redis::ConnectionInfo
let store = RedisBackend::connect(connection_info).await?;
依赖项
~16–32MB
~548K SLoC