Struct cached::stores::RedisCache
source · pub struct RedisCache<K, V> { /* private fields */ }
Available on crate feature
redis_store
only.Expand description
Cache store backed by redis
Values have a ttl applied and enforced by redis. Uses an r2d2 connection pool under the hood.
Implementations§
source§impl<K, V> RedisCache<K, V>
impl<K, V> RedisCache<K, V>
sourcepub fn new<S: AsRef<str>>(prefix: S, seconds: u64) -> RedisCacheBuilder<K, V>
pub fn new<S: AsRef<str>>(prefix: S, seconds: u64) -> RedisCacheBuilder<K, V>
Initialize a RedisCacheBuilder
sourcepub fn connection_string(&self) -> String
pub fn connection_string(&self) -> String
Return the redis connection string used
Trait Implementations§
source§impl<K, V> IOCached<K, V> for RedisCache<K, V>
impl<K, V> IOCached<K, V> for RedisCache<K, V>
type Error = RedisCacheError
source§fn cache_get(&self, key: &K) -> Result<Option<V>, RedisCacheError>
fn cache_get(&self, key: &K) -> Result<Option<V>, RedisCacheError>
Attempt to retrieve a cached value Read more
source§fn cache_set(&self, key: K, val: V) -> Result<Option<V>, RedisCacheError>
fn cache_set(&self, key: K, val: V) -> Result<Option<V>, RedisCacheError>
Insert a key, value pair and return the previous value Read more
source§fn cache_remove(&self, key: &K) -> Result<Option<V>, RedisCacheError>
fn cache_remove(&self, key: &K) -> Result<Option<V>, RedisCacheError>
Remove a cached value Read more
source§fn cache_lifespan(&self) -> Option<u64>
fn cache_lifespan(&self) -> Option<u64>
Return the lifespan of cached values (time to eviction)
source§fn cache_set_lifespan(&mut self, seconds: u64) -> Option<u64>
fn cache_set_lifespan(&mut self, seconds: u64) -> Option<u64>
Set the lifespan of cached values, returns the old value.
source§fn cache_set_refresh(&mut self, refresh: bool) -> bool
fn cache_set_refresh(&mut self, refresh: bool) -> bool
Set the flag to control whether cache hits refresh the ttl of cached values, returns the old flag value
Auto Trait Implementations§
impl<K, V> Freeze for RedisCache<K, V>
impl<K, V> !RefUnwindSafe for RedisCache<K, V>
impl<K, V> Send for RedisCache<K, V>
impl<K, V> Sync for RedisCache<K, V>
impl<K, V> Unpin for RedisCache<K, V>
impl<K, V> !UnwindSafe for RedisCache<K, V>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more