pub fn write_sync<P, D, K>(cache: P, key: K, data: D) -> Result<Integrity>Expand description
Writes data to the cache synchronously, indexing it under key.
ยงExample
use std::io::Read;
fn main() -> cacache::Result<()> {
let data = cacache::write_sync("./my-cache", "my-key", b"hello")?;
Ok(())
}