Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ You can also extend the default cache key:

This gives you full control over cache invalidation based on the specific aspects that matter to your workflow.

### Rust Cache

Rust has a known cache interaction because mise installs Rust through `rustup`.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The term "cache interaction" is ambiguous and doesn't clearly convey that caching is partially ineffective for Rust. Using "caching limitation" or "issue" is more descriptive. Additionally, briefly explaining that the cause is the storage location helps users understand the problem immediately without needing to click the link for basic context.

Suggested change
Rust has a known cache interaction because mise installs Rust through `rustup`.
Rust has a known caching limitation because mise installs Rust through `rustup`, which stores data outside the default cache directory.

See [jdx/mise-action#215](https://github.com/jdx/mise-action/issues/215).

## GitHub API Rate Limits

When installing tools hosted on GitHub (like `gh`, `node`, `bun`, etc.), mise needs to make API calls to GitHub's releases API. Without authentication, these calls are subject to GitHub's rate limit of 60 requests per hour, which can cause installation failures.
Expand Down
Loading