soph_cache/support/drivers/
null.rs

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
use crate::{async_trait, error::Error, traits::CacheDriver, CacheResult};

pub struct Null;

pub fn new() -> Box<dyn CacheDriver> {
    Box::new(Null {})
}

#[async_trait]
impl CacheDriver for Null {
    async fn has(&self, _key: &str) -> CacheResult<bool> {
        Err(Error::Message("Operation not supported by null cache".into()))
    }

    async fn get(&self, _key: &str) -> CacheResult<Option<String>> {
        Ok(None)
    }

    async fn insert(&self, _key: &str, _value: &str) -> CacheResult<()> {
        Err(Error::Message("Operation not supported by null cache".into()))
    }

    async fn remove(&self, _key: &str) -> CacheResult<()> {
        Err(Error::Message("Operation not supported by null cache".into()))
    }
    async fn clear(&self) -> CacheResult<()> {
        Err(Error::Message("Operation not supported by null cache".into()))
    }
}