1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! QAIL driver for Redis - ephemeral state and caching.
//!
//! ⚠️ **PROTOTYPE** - Early development.
//!
//! "Redis stores time — QAIL decides."
//!
//! Uses the unified Qail AST from qail-core with Redis-specific actions.
//!
//! # Example
//! ```ignore
//! use qail_redis::{RedisDriver, RedisExt};
//! use qail_core::prelude::*;
//!
//! let mut driver = RedisDriver::connect("localhost", 6379).await?;
//!
//! // Unified QAIL AST
//! driver.execute(&Qail::redis_set("session:123", b"data".to_vec()).redis_ex(3600)).await?;
//! let value = driver.execute(&Qail::redis_get("session:123")).await?;
//! ```
// Re-export the RedisExt trait for fluent methods
pub use RedisExt;
pub use RedisDriver;
pub use ;
pub use ;
pub use Value;
/// Re-export qail-core prelude for convenience.