cacache CI crates.io

A high-performance, concurrent, content-addressable disk cache, optimized for async APIs.

Example

```rust use cacache; use async_attributes;

[async_attributes::main]

async fn main() -> Result<(), cacache::Error> { let dir = String::from("./my-cache");

// Write some data!
cacache::write(&dir, "key", b"my-async-data").await?;

// Get the data back!
let data = cacache::read(&dir, "key").await?;
assert_eq!(data, b"my-async-data");

// Clean up the data!
cacache::rm::all(&dir).await?;

} ```

Install

Using cargo-edit

$ cargo add cacache

Minimum supported Rust version is 1.43.0.

Documentation

Features

Contributing

The cacache team enthusiastically welcomes contributions and project participation! There's a bunch of things you can do if you want to contribute! The Contributor Guide has all the information you need for everything from reporting bugs to contributing entire new features. Please don't hesitate to jump in if you'd like to, or even ask us questions if something isn't clear.

All participants and maintainers in this project are expected to follow Code of Conduct, and just generally be excellent to each other.

Happy hacking!

License

This project is licensed under the Apache-2.0 License.