backup: add CachedChunkReader utilizing AsyncLruCache

Provides a fast arbitrary read implementation with full async and
concurrency support.

Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
This commit is contained in:
Stefan Reiter
2021-06-07 17:35:26 +02:00
committed by Wolfgang Bumiller
parent 5446bfbba8
commit 70a152deb7
2 changed files with 92 additions and 0 deletions

View File

@ -259,3 +259,6 @@ pub use catalog_shell::*;
mod async_index_reader;
pub use async_index_reader::*;
mod cached_chunk_reader;
pub use cached_chunk_reader::*;