A CLI tool for CIs and build scripts, making file system based caching easy and correct (locking, eviction, etc.)
When working on build systems / CIs it's often a requirement to utilize some best effort caching, with locking and eviction.
Not exactly rocket science, but non-trivial enough to not want to implement and maintain ad-hoc.
fs-dir-cache
aims to be a simple to use utility from inside
other scripts and programs taking care of the details.
Imagine that you have a CI runner that can persist files between runs, and you'd like to utilize it to reuse and speed up some things:
```bash set -euo pipefail
FSDIRCACHEROOT="$HOME/.cache/fs-dir-cache" # directory to hold all cache (sub)directories FSDIRCACHELOCKID="pid-$$-rnd-$RANDOM" # acquire lock based on the current pid and something random (just in case pid gets reused) FSDIRCACHEKEYNAME="build-project-x" # the base name of our key FSDIRCACHELOCKTIMEOUTSECS="600" # unlock after timeout in case our job fails misereably
fs-dir-cache gc unused --seconds "$((7 * 24 * 60 * 60))" # delete caches not used in more than a week
cache_dir=$(fs-dir-cache lock --key-file Cargo.toml)
trap "fs-dir-cache unlock --dir ${cache_dir}" EXIT
cargo build --target-dir="${cache_dir}/target" ```
Using just one tool, it's easy to get correct and practical caching including: