31 releases

new 0.13.0 Apr 11, 2024
0.12.1 Jan 15, 2024
0.12.0 Nov 1, 2023
0.11.2 Jul 29, 2023
0.4.1 Mar 29, 2022

#230 in HTTP client

Download history 1/week @ 2023-12-22 4/week @ 2023-12-29 5/week @ 2024-01-05 60/week @ 2024-01-12 6/week @ 2024-01-19 2/week @ 2024-01-26 9/week @ 2024-02-16 51/week @ 2024-02-23 117/week @ 2024-03-01 28/week @ 2024-03-08 29/week @ 2024-03-15 97/week @ 2024-03-22 68/week @ 2024-03-29 161/week @ 2024-04-05

358 downloads per month
Used in 4 crates (3 directly)

MIT/Apache

85KB
1.5K SLoC

http-cache-surf

CI Crates.io Docs.rs Codecov Crates.io

the http-cache logo

A caching middleware that follows HTTP caching rules, thanks to http-cache-semantics. By default, it uses cacache as the backend cache manager. Should likely be registered after any middleware modifying the request.

Minimum Supported Rust Version (MSRV)

1.67.1

Install

With cargo add installed :

cargo add http-cache-surf

Example

use http_cache_surf::{Cache, CacheMode, CACacheManager, 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: CACacheManager::default(),
          options: HttpCacheOptions::default(),
        }))
        .send(req)
        .await?;
    Ok(())
}

Features

The following features are available. By default manager-cacache is enabled.

  • manager-cacache (default): enable cacache, a high-performance disk cache, backend manager.
  • manager-moka (disabled): enable moka, a high-performance in-memory cache, backend manager.

Documentation

License

Licensed under either of

at your option.

Contribution

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.

Dependencies

~8–43MB
~666K SLoC