caching
Installation
SKILL.md
Caching
Overview
Cache aggressively, but always have an invalidation strategy.
Caching improves performance dramatically, but stale data causes bugs. Every cache needs a plan for freshness.
When to Use
- Same data fetched repeatedly
- Expensive computations
- Slow database queries
- External API rate limits
- Asked to "just add caching"