An asynchronous Redis client for Rust.
Documentation
Philosophy
- Low allocations
- Full async library
- Lock free implementation
- Rust idiomatic API
- Multiplexing as a core feature
Features
- Full documentation with multiple examples
- Support all Redis Commands until Redis 8.0
- Async support (tokio or async-std)
- Different client modes:
- Single client
- Multiplexed client
- Pooled client manager (based on bb8)
- Automatic command batching
- Advanced reconnection & retry strategy
- Pipelining support
- Configuration with Redis URL or dedicated builder
- TLS support
- Transaction support
- Pub/sub support
- Sentinel support
- LUA Scripts/Functions support
- Cluster support (minimus supported Redis version is 6)
- Client-side caching support
- RedisGraph v2.10 support
Protocol Compatibility
Rustis uses the RESP3 protocol exclusively.
The HELLO 3 command is automatically sent when establishing a connection.
Therefore, your Redis server must support RESP3 (Redis ≥6.0+ with RESP3 enabled).
If you use Redis 5 or older, or your Redis 6+ server still defaults to RESP2,
Rustis will not work.
To verify your server supports RESP3:
If you see server info (role, version, etc.), you're good to go. If you get an error, upgrade Redis.
Basic Usage
use ;
async
Tests
- From the
redisdirectory, rundocker_up.shordocker_up.cmd - run
cargo test --features pool,tokio-rustls,json,client-cache(Tokio runtime) - run
cargo test --no-default-features --features async-std-runtime,async-std-native-tls,json,client-cache(async-std runtime) - run
cargo fmt --all -- --check
Benchmarks
- From the
redisdirectory, rundocker_up.shordocker_up.cmd - run
cargo bench