rig-redis 0.1.0

Redis support utilities for Rig integrations.
Documentation
# rig-redis

Redis support utilities for Rig integrations.

This crate currently provides lightweight configuration and key-building types
that can be shared by future Redis-backed Rig providers, caches, and vector
stores without forcing a specific Redis client runtime.

## Example

```rust
use rig_redis::{RedisConfig, RedisKey};

let config = RedisConfig::new("redis://127.0.0.1:6379")
    .with_namespace("rig")
    .with_index("documents");

let key = RedisKey::new(config.namespace(), "chunk:42");

assert_eq!(config.index(), "documents");
assert_eq!(key.as_str(), "rig:chunk:42");
```