| 18 | |
| 19 | #[derive(Debug, Clone)] |
| 20 | pub struct MemCacheMeta { |
| 21 | pub req_path: String, |
| 22 | pub headers: Vec<(String, String)>, |
| 23 | pub content: Option<tide::http::Mime>, |
| 24 | pub blob: Vec<u8>, |
| 25 | pub refresh: Instant, |
| 26 | } |
| 27 | |
| 28 | async fn cache_mgr( |
| 29 | map: Arc<HashMap<String, Arc<MemCacheObj>>>, |
nothing calls this directly
no outgoing calls
no test coverage detected