caching-strategies
Installation
SKILL.md
Caching Strategies
Cache effectively to improve performance and reduce load.
Cache Layers
| Layer | Latency | Storage | Examples |
|---|---|---|---|
| Browser | Local | Small | localStorage, HTTP cache |
| CDN | Regional | Large | CloudFront, CloudFlare, Fastly |
| Application | In-process | Small | L1 cache (heap) |
| Distributed | Network | Large | Redis, Memcached |
| Database | Same host | Very large | Buffer pool, query cache |