pywatt_sdk 0.5.3

Standardized SDK for building PyWatt modules in Rust
Documentation
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
#[cfg(feature = "redis_cache")]
use crate::cache::{CacheConfig, CacheError, CacheResult, CacheService, CacheStats, CacheType};
#[cfg(feature = "redis_cache")]
use async_trait::async_trait;
#[cfg(feature = "redis_cache")]
use redis::{
    aio::ConnectionManager, AsyncCommands, Client, ErrorKind, FromRedisValue, RedisError,
    RedisResult, Script, ToRedisArgs, Value as RedisValue,
};
#[cfg(feature = "redis_cache")]
use std::collections::HashMap;
#[cfg(feature = "redis_cache")]
use std::sync::atomic::{AtomicU64, Ordering};
#[cfg(feature = "redis_cache")]
use std::sync::Arc;
#[cfg(feature = "redis_cache")]
use std::time::Duration;
#[cfg(feature = "redis_cache")]
use uuid::Uuid;

/// Redis cache implementation
#[cfg(feature = "redis_cache")]
pub struct RedisCache {
    /// Redis connection manager
    connection: Arc<ConnectionManager>,
    /// Default TTL for cache entries
    default_ttl: Duration,
    /// Namespace prefix for cache keys
    namespace: Option<String>,
    /// Cache hit counter
    hits: Arc<AtomicU64>,
    /// Cache miss counter
    misses: Arc<AtomicU64>,
}

#[cfg(not(feature = "redis_cache"))]
pub struct RedisCache;

impl RedisCache {
    /// Connect to Redis using the provided configuration
    pub async fn connect(config: &CacheConfig) -> CacheResult<Self> {
        #[cfg(feature = "redis_cache")]
        {
            // Build server list
            let server = if config.hosts.is_empty() {
                "127.0.0.1".to_string()
            } else {
                config.hosts[0].clone()
            };

            // Add port if specified
            let server_with_port = if let Some(port) = config.port {
                format!("{}:{}", server, port)
            } else {
                // Default Redis port
                format!("{}:6379", server)
            };

            // Build Redis URL
            let mut redis_url = format!("redis://{}", server_with_port);

            // Add credentials if provided
            if let (Some(username), Some(password)) = (&config.username, &config.password) {
                redis_url = format!("redis://{}:{}@{}", username, password, server_with_port);
            } else if let Some(password) = &config.password {
                redis_url = format!("redis://:{}@{}", password, server_with_port);
            }

            // Create client
            let client = Client::open(redis_url.clone()).map_err(|e| {
                map_redis_error(e, &format!("Failed to connect to Redis at {}", redis_url))
            })?;

            // Create connection manager
            let connection = ConnectionManager::new(client)
                .await
                .map_err(|e| map_redis_error(e, "Failed to create Redis connection manager"))?;

            Ok(Self {
                connection: Arc::new(connection),
                default_ttl: config.get_default_ttl(),
                namespace: config.namespace.clone(),
                hits: Arc::new(AtomicU64::new(0)),
                misses: Arc::new(AtomicU64::new(0)),
            })
        }

        #[cfg(not(feature = "redis_cache"))]
        {
            Err(CacheError::Connection("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
        }
    }

    /// Add namespace prefix to key if configured
    fn prefix_key(&self, key: &str) -> String {
        if let Some(ns) = &self.namespace {
            format!("{}:{}", ns, key)
        } else {
            key.to_string()
        }
    }

    /// Strip namespace prefix from key if needed
    fn strip_prefix(&self, key: &str) -> String {
        if let Some(ns) = &self.namespace {
            let prefix = format!("{}:", ns);
            if key.starts_with(&prefix) {
                key[prefix.len()..].to_string()
            } else {
                key.to_string()
            }
        } else {
            key.to_string()
        }
    }

    /// Convert Redis error to CacheError
    fn convert_error(err: RedisError) -> CacheError {
        match err.kind() {
            redis::ErrorKind::IoError => {
                CacheError::Connection(format!("Redis I/O error: {}", err))
            }
            redis::ErrorKind::AuthenticationFailed => {
                CacheError::Connection(format!("Redis authentication failed: {}", err))
            }
            redis::ErrorKind::ResponseError => {
                CacheError::Operation(format!("Redis response error: {}", err))
            }
            redis::ErrorKind::ClientError => {
                CacheError::Operation(format!("Redis client error: {}", err))
            }
            redis::ErrorKind::ExtensionError => {
                CacheError::Operation(format!("Redis extension error: {}", err))
            }
            redis::ErrorKind::TypeError => {
                CacheError::Operation(format!("Redis type error: {}", err))
            }
            redis::ErrorKind::ExecAbortError => {
                CacheError::Operation(format!("Redis exec abort error: {}", err))
            }
            redis::ErrorKind::BusyLoadingError => {
                CacheError::Operation(format!("Redis busy loading: {}", err))
            }
            redis::ErrorKind::InvalidClientConfig => {
                CacheError::Configuration(format!("Redis invalid client config: {}", err))
            }
            redis::ErrorKind::Moved => CacheError::Operation(format!("Redis moved error: {}", err)),
            redis::ErrorKind::Ask => CacheError::Operation(format!("Redis ask error: {}", err)),
            redis::ErrorKind::TryAgain => {
                CacheError::Operation(format!("Redis try again: {}", err))
            }
            redis::ErrorKind::ClusterDown => {
                CacheError::Connection(format!("Redis cluster down: {}", err))
            }
            redis::ErrorKind::CrossSlot => {
                CacheError::Operation(format!("Redis cross slot: {}", err))
            }
            redis::ErrorKind::MasterDown => {
                CacheError::Connection(format!("Redis master down: {}", err))
            }
            redis::ErrorKind::NotBusy => CacheError::Operation(format!("Redis not busy: {}", err)),
            _ => CacheError::Operation(format!("Redis error: {}", err)),
        }
    }
}

impl From<RedisError> for CacheError {
    fn from(err: RedisError) -> Self {
        CacheError::Connection(format!("Redis error: {}", err))
    }
}

/// Map Redis errors to CacheError
#[cfg(feature = "redis_cache")]
fn map_redis_error(err: RedisError, context: &str) -> CacheError {
    match err.kind() {
        ErrorKind::IoError => {
            CacheError::Connection(format!("{}: {} (IO error)", context, err))
        }
        ErrorKind::AuthenticationFailed => {
            CacheError::Connection(format!("{}: {} (Authentication failed)", context, err))
        }
        ErrorKind::ResponseError => {
            CacheError::Operation(format!("{}: {} (Response error)", context, err))
        }
        ErrorKind::ClientError => {
            CacheError::Operation(format!("{}: {} (Client error)", context, err))
        }
        ErrorKind::ExtensionError => {
            CacheError::Operation(format!("{}: {} (Extension error)", context, err))
        }
        ErrorKind::TypeError => {
            CacheError::Operation(format!("{}: {} (Type error)", context, err))
        }
        ErrorKind::ExecAbortError => {
            CacheError::Operation(format!("{}: {} (Exec abort error)", context, err))
        }
        ErrorKind::BusyLoadingError => {
            CacheError::Connection(format!("{}: {} (Busy loading)", context, err))
        }
        ErrorKind::InvalidClientConfig => {
            CacheError::Connection(format!("{}: {} (Invalid client config)", context, err))
        }
        ErrorKind::Moved => CacheError::Operation(format!("Redis moved error: {}", err)),
        ErrorKind::Ask => CacheError::Operation(format!("Redis ask error: {}", err)),
        ErrorKind::TryAgain => {
            CacheError::Operation(format!("{}: {} (Try again)", context, err))
        }
        ErrorKind::ClusterDown => {
            CacheError::Connection(format!("{}: {} (Cluster down)", context, err))
        }
        ErrorKind::CrossSlot => {
            CacheError::Operation(format!("{}: {} (Cross slot)", context, err))
        }
        ErrorKind::MasterDown => {
            CacheError::Connection(format!("{}: {} (Master down)", context, err))
        }
        ErrorKind::NotBusy => CacheError::Operation(format!("Redis not busy: {}", err)),
        _ => CacheError::Operation(format!("{}: {}", context, err)),
    }
}

#[cfg(feature = "redis_cache")]
#[async_trait]
impl CacheService for RedisCache {
    async fn get(&self, key: &str) -> CacheResult<Option<Vec<u8>>> {
        let prefixed_key = self.prefix_key(key);
        let mut conn = self.connection.clone();

        // Execute Redis GET command
        match conn.get::<_, Option<Vec<u8>>>(&prefixed_key).await {
            Ok(value) => {
                if value.is_some() {
                    self.hits.fetch_add(1, Ordering::Relaxed);
                } else {
                    self.misses.fetch_add(1, Ordering::Relaxed);
                }
                Ok(value)
            }
            Err(e) => {
                // Handle nil responses gracefully
                if e.kind() == ErrorKind::TypeError || e.to_string().contains("nil") {
                    self.misses.fetch_add(1, Ordering::Relaxed);
                    Ok(None)
                } else {
                    Err(map_redis_error(
                        e,
                        &format!("Failed to get key {}", prefixed_key),
                    ))
                }
            }
        }
    }

    async fn set(&self, key: &str, value: &[u8], ttl: Option<Duration>) -> CacheResult<()> {
        let prefixed_key = self.prefix_key(key);
        let mut conn = self.connection.clone();
        let expiry = ttl.unwrap_or(self.default_ttl);

        // For short-lived TTLs (under a second), use millisecond precision
        if expiry.as_secs() == 0 && expiry.subsec_millis() > 0 {
            let mut cmd = redis::cmd("SET");
            cmd.arg(&prefixed_key)
                .arg(value)
                .arg("PX")
                .arg(expiry.as_millis() as u64);

            cmd.query_async(&mut conn)
                .await
                .map_err(|e| {
                    map_redis_error(e, &format!("Failed to set key {} with PX", prefixed_key))
                })?;
        } else {
            // For normal TTLs, use second precision
            conn.set_ex(prefixed_key, value, expiry.as_secs() as usize)
                .await
                .map_err(|e| {
                    map_redis_error(e, &format!("Failed to set key {} with EX", key))
                })?;
        }

        Ok(())
    }

    async fn delete(&self, key: &str) -> CacheResult<bool> {
        let key = self.prefix_key(key);
        let result: RedisResult<i64> = self.connection.clone().del(&key).await;

        match result {
            Ok(count) => Ok(count > 0),
            Err(e) => Err(Self::convert_error(e)),
        }
    }

    async fn exists(&self, key: &str) -> CacheResult<bool> {
        let key = self.prefix_key(key);
        let result: RedisResult<i64> = self.connection.clone().exists(&key).await;

        match result {
            Ok(count) => Ok(count > 0),
            Err(e) => Err(Self::convert_error(e)),
        }
    }

    async fn set_nx(&self, key: &str, value: &[u8], ttl: Option<Duration>) -> CacheResult<bool> {
        let key = self.prefix_key(key);
        let expiry = ttl.unwrap_or(self.default_ttl);

        let result: RedisResult<bool> = if expiry.as_secs() > 0 {
            let mut cmd = redis::cmd("SET");
            cmd.arg(&key)
                .arg(value)
                .arg("NX")
                .arg("EX")
                .arg(expiry.as_secs());
            let response: RedisValue = cmd.query_async(&mut self.connection.clone()).await?;

            match response {
                RedisValue::Nil => Ok(false),
                RedisValue::Status(status) if status == "OK" => Ok(true),
                _ => Ok(false),
            }
        } else {
            self.connection.clone().set_nx(&key, value).await
        };

        result.map_err(Self::convert_error)
    }

    async fn get_set(&self, key: &str, value: &[u8]) -> CacheResult<Option<Vec<u8>>> {
        let key = self.prefix_key(key);
        let result: RedisResult<Option<Vec<u8>>> =
            self.connection.clone().getset(&key, value).await;

        match result {
            Ok(value) => Ok(value),
            Err(e) => {
                // Handle nil response as None
                if e.kind() == redis::ErrorKind::TypeError || e.to_string().contains("nil") {
                    Ok(None)
                } else {
                    Err(Self::convert_error(e))
                }
            }
        }
    }

    async fn increment(&self, key: &str, delta: i64) -> CacheResult<i64> {
        let key = self.prefix_key(key);
        let result: RedisResult<i64> = if delta >= 0 {
            self.connection.clone().incr(&key, delta).await
        } else {
            self.connection.clone().decr(&key, -delta).await
        };

        result.map_err(Self::convert_error)
    }

    async fn set_many(
        &self,
        items: &HashMap<String, Vec<u8>>,
        ttl: Option<Duration>,
    ) -> CacheResult<()> {
        if items.is_empty() {
            return Ok(());
        }

        let mut pipe = redis::pipe();
        let expiry = ttl.unwrap_or(self.default_ttl);

        for (key, value) in items {
            let key = self.prefix_key(key);
            if expiry.as_secs() > 0 {
                pipe.set_ex(&key, value, expiry.as_secs() as usize);
            } else {
                pipe.set(&key, value);
            }
        }

        let result: RedisResult<()> = pipe.query_async(&mut self.connection.clone()).await;
        result.map_err(Self::convert_error)
    }

    async fn get_many(&self, keys: &[String]) -> CacheResult<HashMap<String, Vec<u8>>> {
        if keys.is_empty() {
            return Ok(HashMap::new());
        }

        let prefixed_keys: Vec<String> = keys.iter().map(|k| self.prefix_key(k)).collect();

        let result: RedisResult<Vec<Option<Vec<u8>>>> = self
            .connection
            .clone()
            .get(prefixed_keys.as_slice())
            .await;

        match result {
            Ok(values) => {
                let mut map = HashMap::new();
                for (i, value) in values.into_iter().enumerate() {
                    if let Some(data) = value {
                        let original_key = if i < keys.len() { &keys[i] } else { continue };
                        map.insert(original_key.clone(), data);
                    }
                }
                Ok(map)
            }
            Err(e) => Err(Self::convert_error(e)),
        }
    }

    async fn delete_many(&self, keys: &[String]) -> CacheResult<u64> {
        if keys.is_empty() {
            return Ok(0);
        }

        let prefixed_keys: Vec<String> = keys.iter().map(|k| self.prefix_key(k)).collect();

        let result: RedisResult<i64> = self
            .connection
            .clone()
            .del(prefixed_keys.as_slice())
            .await;

        match result {
            Ok(count) => Ok(count as u64),
            Err(e) => Err(Self::convert_error(e)),
        }
    }

    async fn clear(&self, namespace: Option<&str>) -> CacheResult<()> {
        // Use namespace from parameter, or object's namespace if not specified
        let pattern = if let Some(ns) = namespace {
            format!("{}:*", ns)
        } else if let Some(ns) = &self.namespace {
            format!("{}:*", ns)
        } else {
            "*".to_string()
        };

        // WARNING: This is a potentially expensive operation in production
        // as it uses the KEYS command
        let keys: RedisResult<Vec<String>> = redis::cmd("KEYS")
            .arg(&pattern)
            .query_async(&mut self.connection.clone())
            .await;

        match keys {
            Ok(keys) => {
                if !keys.is_empty() {
                    let result: RedisResult<i64> =
                        self.connection.clone().del(keys.as_slice()).await;
                    result.map(|_| ()).map_err(Self::convert_error)
                } else {
                    Ok(())
                }
            }
            Err(e) => Err(Self::convert_error(e)),
        }
    }

    async fn lock(&self, key: &str, ttl: Duration) -> CacheResult<Option<String>> {
        // Use Redis to implement distributed locking (based on the Redlock algorithm)
        let lock_key = self.prefix_key(&format!("lock:{}", key));
        let token = uuid::Uuid::new_v4().to_string();

        // Try to acquire the lock with NX
        let result: RedisResult<bool> = self
            .connection
            .clone()
            .set_ex(&lock_key, token.as_bytes(), ttl.as_secs() as usize)
            .await;

        match result {
            Ok(true) => Ok(Some(token)),
            Ok(false) => Ok(None),
            Err(e) => Err(Self::convert_error(e)),
        }
    }

    async fn unlock(&self, key: &str, lock_token: &str) -> CacheResult<bool> {
        // Use Lua script to ensure atomic release - only delete if the token matches
        let lock_key = self.prefix_key(&format!("lock:{}", key));

        let script = r#"
        if redis.call('get', KEYS[1]) == ARGV[1] then
            return redis.call('del', KEYS[1])
        else
            return 0
        end
        "#;

        let result: RedisResult<i64> = redis::Script::new(script)
            .key(&lock_key)
            .arg(lock_token.as_bytes())
            .invoke_async(&mut self.connection.clone())
            .await;

        match result {
            Ok(1) => Ok(true),
            Ok(_) => Ok(false),
            Err(e) => Err(Self::convert_error(e)),
        }
    }

    fn get_cache_type(&self) -> CacheType {
        CacheType::Redis
    }

    async fn ping(&self) -> CacheResult<()> {
        let result: RedisResult<String> = redis::cmd("PING")
            .query_async(&mut self.connection.clone())
            .await;

        match result {
            Ok(response) if response == "PONG" => Ok(()),
            Ok(_) => Err(CacheError::Connection("Invalid PING response".to_string())),
            Err(e) => Err(Self::convert_error(e)),
        }
    }

    async fn close(&self) -> CacheResult<()> {
        // ConnectionManager handles connection cleanup automatically
        Ok(())
    }

    fn get_default_ttl(&self) -> Duration {
        self.default_ttl
    }

    async fn stats(&self) -> CacheResult<CacheStats> {
        let info_cmd: RedisResult<String> = redis::cmd("INFO")
            .query_async(&mut self.connection.clone())
            .await;

        match info_cmd {
            Ok(info) => {
                let mut stats = CacheStats {
                    item_count: None,
                    memory_used_bytes: None,
                    hits: None,
                    misses: None,
                    sets: None,
                    deletes: None,
                    additional_metrics: HashMap::new(),
                    ..Default::default()
                };

                // Parse relevant lines from INFO command output
                for line in info.lines() {
                    // Skip comments and empty lines
                    if line.starts_with('#') || line.trim().is_empty() {
                        continue;
                    }

                    if let Some((key, value)) = line.split_once(':') {
                        match key {
                            "keyspace_hits" => {
                                if let Ok(hits) = value.parse::<u64>() {
                                    stats.hits = Some(hits);
                                }
                            }
                            "keyspace_misses" => {
                                if let Ok(misses) = value.parse::<u64>() {
                                    stats.misses = Some(misses);
                                }
                            }
                            "used_memory" => {
                                if let Ok(memory) = value.parse::<u64>() {
                                    stats.memory_used_bytes = Some(memory);
                                }
                            }
                            "db0" => {
                                // Parse db0 string which looks like: "keys=123,expires=12,avg_ttl=3600"
                                if let Some(keys_part) = value.split(',').next() {
                                    if let Some(keys_str) = keys_part.strip_prefix("keys=") {
                                        if let Ok(keys) = keys_str.parse::<u64>() {
                                            stats.item_count = Some(keys);
                                        }
                                    }
                                }
                            }
                            // Add other interesting metrics to additional_metrics
                            "connected_clients"
                            | "total_connections_received"
                            | "expired_keys"
                            | "evicted_keys"
                            | "uptime_in_seconds" => {
                                stats
                                    .additional_metrics
                                    .insert(key.to_string(), value.to_string());
                            }
                            _ => {}
                        }
                    }
                }

                Ok(stats)
            }
            Err(e) => Err(Self::convert_error(e)),
        }
    }

    async fn flush(&self) -> CacheResult<()> {
        let pattern = if let Some(ns) = &self.namespace {
            format!("{}:*", ns)
        } else {
            "*".to_string()
        };

        // WARNING: This is a potentially expensive operation in production
        // as it uses the KEYS command
        let keys: RedisResult<Vec<String>> = redis::cmd("KEYS")
            .arg(&pattern)
            .query_async(&mut self.connection.clone())
            .await;

        match keys {
            Ok(keys) => {
                if !keys.is_empty() {
                    let result: RedisResult<i64> =
                        self.connection.clone().del(keys.as_slice()).await;
                    result.map(|_| ()).map_err(Self::convert_error)
                } else {
                    Ok(())
                }
            }
            Err(e) => Err(Self::convert_error(e)),
        }
    }
}

#[cfg(not(feature = "redis_cache"))]
#[async_trait::async_trait]
impl crate::cache::CacheService for RedisCache {
    async fn get(&self, _key: &str) -> crate::cache::CacheResult<Option<Vec<u8>>> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn set(&self, _key: &str, _value: &[u8], _ttl: Option<std::time::Duration>) -> crate::cache::CacheResult<()> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn delete(&self, _key: &str) -> crate::cache::CacheResult<bool> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn exists(&self, _key: &str) -> crate::cache::CacheResult<bool> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn set_nx(&self, _key: &str, _value: &[u8], _ttl: Option<std::time::Duration>) -> crate::cache::CacheResult<bool> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn get_set(&self, _key: &str, _value: &[u8]) -> crate::cache::CacheResult<Option<Vec<u8>>> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn increment(&self, _key: &str, _delta: i64) -> crate::cache::CacheResult<i64> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn set_many(&self, _items: &std::collections::HashMap<String, Vec<u8>>, _ttl: Option<std::time::Duration>) -> crate::cache::CacheResult<()> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn get_many(&self, _keys: &[String]) -> crate::cache::CacheResult<std::collections::HashMap<String, Vec<u8>>> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn delete_many(&self, _keys: &[String]) -> crate::cache::CacheResult<u64> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn clear(&self, _namespace: Option<&str>) -> crate::cache::CacheResult<()> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn lock(&self, _key: &str, _ttl: std::time::Duration) -> crate::cache::CacheResult<Option<String>> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn unlock(&self, _key: &str, _lock_token: &str) -> crate::cache::CacheResult<bool> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    fn get_cache_type(&self) -> crate::cache::CacheType {
        crate::cache::CacheType::Redis
    }

    async fn ping(&self) -> crate::cache::CacheResult<()> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn close(&self) -> crate::cache::CacheResult<()> {
        Ok(())
    }

    fn get_default_ttl(&self) -> std::time::Duration {
        std::time::Duration::from_secs(300)
    }

    async fn stats(&self) -> crate::cache::CacheResult<crate::cache::CacheStats> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }

    async fn flush(&self) -> crate::cache::CacheResult<()> {
        Err(crate::cache::CacheError::Operation("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }
}

#[cfg(not(feature = "redis_cache"))]
impl RedisCache {
    pub async fn connect(_config: &crate::cache::CacheConfig) -> crate::cache::CacheResult<Self> {
        Err(crate::cache::CacheError::Connection("Redis support is not enabled. Recompile with the 'redis_cache' feature.".to_string()))
    }
}