[go: up one dir, main page]

write_sync

Function write_sync 

Source
pub fn write_sync<P, D, K>(cache: P, key: K, data: D) -> Result<Integrity>
where P: AsRef<Path>, D: AsRef<[u8]>, K: AsRef<str>,
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(())
}