(url: String)
| 103 | |
| 104 | impl Redis { |
| 105 | pub fn new(url: String) -> Result<Self> { |
| 106 | Ok(Redis { url }) |
| 107 | } |
| 108 | |
| 109 | // For each topic read path (a commit, oid, repo_id combo), fetch the downset for the repo |
| 110 | // topic, save the oids in the downset to redis and perform the intersection of the sets, |
nothing calls this directly
no outgoing calls
no test coverage detected