Crates.io | http-cache-quickcache |
lib.rs | http-cache-quickcache |
version | 0.8.0 |
source | src |
created_at | 2023-02-17 00:35:03.482183 |
updated_at | 2024-11-13 04:39:52.399987 |
description | http-cache manager implementation for quick-cache |
homepage | https://http-cache.rs |
repository | https://github.com/06chaynes/http-cache |
max_upload_size | |
id | 787148 |
size | 15,236 |
An http-cache manager implementation for quick-cache.
1.71.1
With cargo add installed :
cargo add http-cache-quickcache
use http_cache_quickcache::QuickManager;
use http_cache_surf::{Cache, CacheMode, HttpCache, HttpCacheOptions};
#[async_std::main]
async fn main() -> surf::Result<()> {
let req = surf::get("https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching");
surf::client()
.with(Cache(HttpCache {
mode: CacheMode::Default,
manager: QuickManager::default(),
options: HttpCacheOptions::default(),
}))
.send(req)
.await?;
Ok(())
}
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.