A high-performance, concurrent, content-addressable disk cache, with support for both sync and async APIs. 💩💵 but for your 🦀
Go to file
Kat Marchán c44b781a34
feat(deps): upgrade to latest async-std and regular futures crate
Fixes: #22

BREAKING CHANGE: returned futures are now regular futures crate futures
2019-11-11 19:31:28 -08:00
.github build: switch to actions-rs (#12) 2019-10-19 11:05:53 -04:00
benches feat(api): rewrite entire API to be like std::fs (#21) 2019-10-23 21:17:57 -07:00
src cleanup: some reorganizing and reformatting of stuff 2019-11-06 23:03:14 -08:00
.clog.toml meta: added clog.toml and initial CHANGELOG 2019-07-01 13:32:47 -07:00
.gitignore meta: ignore .vscode 2019-05-25 22:59:24 -07:00
CHANGELOG.md docs: update changelog 2019-10-23 21:20:41 -07:00
CODE_OF_CONDUCT.md doc(readme): filled out README; added CoC and CONTRIBUTING.md 2019-07-01 00:04:52 -07:00
CONTRIBUTING.md doc(readme): filled out README; added CoC and CONTRIBUTING.md 2019-07-01 00:04:52 -07:00
Cargo.lock feat(deps): upgrade to latest async-std and regular futures crate 2019-11-11 19:31:28 -08:00
Cargo.toml feat(deps): upgrade to latest async-std and regular futures crate 2019-11-11 19:31:28 -08:00
LICENSE-APACHE.md feat(license): relicense to Parity+Apache 2019-10-15 12:15:34 -04:00
LICENSE-PARITY.md feat(license): upgrade to Parity 7.0 release 2019-11-06 20:59:31 -08:00
LICENSE-PATRON.md feat(license): Add in Patron license to make proprietary stuff more clear 2019-10-20 16:42:34 -04:00
LICENSE.md feat(license): Add in Patron license to make proprietary stuff more clear 2019-10-20 16:42:34 -04:00
README.md feat(api): rewrite entire API to be like std::fs (#21) 2019-10-23 21:17:57 -07:00

README.md

cacache

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

Example

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

Documentation

Features

  • First-class async support, using async-std as its runtime. Sync APIs are available but secondary
  • std::fs-style API
  • Extraction by key or by content address (shasum, etc)
  • Subresource Integrity web standard support
  • Multi-hash support - safely host sha1, sha512, etc, in a single cache
  • Automatic content deduplication
  • Atomic content writes even for large data
  • Fault tolerance (immune to corruption, partial writes, process races, etc)
  • Consistency guarantees on read and write (full data verification)
  • Lockless, high-concurrency cache access
  • Really helpful, contextual error messages
  • Large file support
  • Pretty darn fast
  • Arbitrary metadata storage
  • Cross-platform: Windows and case-(in)sensitive filesystem support
  • Punches nazis

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 Parity License. Third-party contributions are licensed under Apache-2.0 and belong to their respective authors.

The Parity License is a copyleft license that, unlike the GPL family, allows you to license derivative and connected works under permissive licenses like MIT or Apache-2.0. It's free to use provided the work you do is freely available!

For proprietary use, please contact me, or just sponsor me on GitHub under the appropriate tier to acquire a proprietary-use license! This funding model helps me make my work sustainable and compensates me for the work it took to write this crate!