1 2 3 4 5 6 7 8
use redis::Client; #[derive(Debug, Clone)] pub struct CacheConnectorRedis { pub(crate) client: Client, pub(crate) prefix: String, pub(crate) split_peers: bool, }