basteh-redis

This crate provides an implementation for basteh based on redis.

Please refer to basteh crate documentations for full details about usage and use cases.

RedisBackend

RedisBackend is a full store with expiration implementation.

```rust,norun use bastehredis::{RedisBackend, ConnectionInfo, RedisConnectionInfo, ConnectionAddr};

async fn mymain() { // Connecting to the redis instance on localhost without username/password(for dev env) let store = RedisBackend::connectdefault().await.expect("Redis connection failed"); // OR connect with the provided redis::ConnectionInfo let connectioninfo = ConnectionInfo { addr: ConnectionAddr::Tcp("127.0.0.1".tostring(), 1234).into(), redis: RedisConnectionInfo{ db: 0, username: Some("god".tostring()), password: Some("bless".tostring()), } }; let store = RedisBackend::connect(connection_info).await.expect("Redis connection failed"); } ```