generic_filesystem_cache

Crates.iogeneric_filesystem_cache
lib.rsgeneric_filesystem_cache
version0.1.0
sourcesrc
created_at2021-10-30 15:13:10.041313
updated_at2021-10-30 15:13:10.041313
descriptiona cache for slow-to-compute information based on the state of on-disk objects. Includes capability to update entries based on the last-modified-time attribute
homepage
repositoryhttps://github.com/Farmadupe/generic_filesystem_cache
max_upload_size
id474410
size31,205
(Farmadupe)

documentation

README

Generic Filesystem Cache

A small rust library for caching slow-to-compute data based on hard drive contents. Given a set of starting paths and a 'processing function' supplied by you, this library will recursively scan the filesystem from those starting paths and apply the processing function to each file.

The cache will save cached data to disk at a path given by you whenever a set number of changes has occurred inside the cache.

When directed by you, the cache will update itself if the 'modification time' of any cached file is changed.

Features

  • Supports Parallel loading (through rayon)

  • Will cache any serializable type

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 4

cargo fmt