range-cache 0.1.1

Sparse byte-range caching and async read coalescing for immutable objects such as remote index files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

mod cache;
mod error;

#[cfg(feature = "async")]
mod reader;

pub use cache::{CacheCapacity, CacheSnapshot, InsertOutcome, Invalidation, RangeCache};
pub use error::RangeError;

#[cfg(feature = "async")]
pub use reader::{CachedReader, RangeReader, ReadError, ReaderConfig};