(&self)
| 169 | } |
| 170 | |
| 171 | pub fn connection(&self) -> Result<redis_rs::Connection> { |
| 172 | let client = redis_rs::Client::open(self.url.clone())?; |
| 173 | Ok(client.get_connection()?) |
| 174 | } |
| 175 | |
| 176 | // Since redis keys have the commit hash of an immutible Git commit, they do not need to have |
| 177 | // an expiry. |
no outgoing calls
no test coverage detected