Managing Cache
Viewing cache usage
Section titled “Viewing cache usage”Console
Section titled “Console”The Caches page in the Avrea console shows:
- Total usage across all repositories in your organization
- Per-repository breakdown with quota progress bars
- Per-repository entry list with type, key, size, hits, and last-used time
- Filter by cache type (gha, go-build, bazel-build, sccache-build, etc.)

avr cache usage --repo rep-abc123Shows cache usage summary for a repository. To list individual entries:
avr cache list --repo rep-abc123Deleting cache entries
Section titled “Deleting cache entries”You can delete specific cache entries from the console's entry list or via the CLI:
avr cache delete --repo rep-abc123 --type gha --key "node_modules"avr cache delete --repo rep-abc123 --allCache settings
Section titled “Cache settings”Each cache type can be individually enabled or disabled at the organization or repository level.
Console
Section titled “Console”Go to Settings in the Avrea console to toggle caches on or off:
| Setting | Description | Default |
|---|---|---|
| GitHub Actions Cache | Cache dependencies and build outputs via actions/cache | On |
| Go Build Cache | Accelerate Go builds with shared GOCACHEPROG | On |
| Bazel Remote Cache | Accelerate Bazel builds with a shared remote cache | On |
| Turborepo Cache | Cache Turborepo task outputs across workflow runs | On |
| ccache | Accelerate C/C++ compilations with shared ccache storage | On |
| Gradle Build Cache | Share Gradle build outputs across workflow runs | On |
| sccache | Accelerate Rust and C/C++ compilations with shared sccache | On |
| Maven Build Cache | Share Maven build outputs across workflow runs | On |
| Nix Binary Cache | Cache Nix build outputs as a binary cache | On |
| Package Manager Cache | Cache packages from npm, pip, Go modules, and Cargo registries | On |
Organization-level settings apply to all repositories by default. Repository-level overrides take precedence.
List current settings:
avr settings listDisable a specific cache for a repository:
avr settings set cache.sccache.enabled falseRe-enable it:
avr settings set cache.sccache.enabled trueReset to the inherited default:
avr settings reset cache.sccache.enabledView all available setting definitions:
avr settings schema