Caching strategies for backend and frontend applications. Use when implementing or reviewing caching.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add skeletorflet/opencode-supreme-setup --skill caching --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Caching?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/skeletorflet-caching)More formats (shields.io, HTML) on the badges page.
---
name: caching
description: Caching strategies for backend and frontend applications. Use when implementing or reviewing caching.
---
## caching
Implement effective caching strategies.
### Cache levels
- Browser cache: static assets
- CDN cache: edge caching
- Server cache: Redis, query cache
- Application cache: memoization
### Strategies
- Cache-first: serve cache, update background
- Network-first: try network, fallback cache
- Stale-while-revalidate: serve stale, refresh async
- Write-through: update cache on write
- TTL-based invalidation
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!