# Web API fetch cache option
🎯: hit, ∅: miss, ✅: cache, ❌: no-store
| cache | local cache | store response | server |
| -------- | -------- | -------- | -------- |
| default | 🎯🐟 | | |
| default | 🎯⚰️ | ✅ | validate |
| default | ∅ | ✅ | response |
| no-store | skip | ❌ | response |
| reload | skip | ✅ | response |
| no-cache | 🎯 | ✅ | validate |
| no-cache | ∅ | ✅ | response |
| force-cache | 🎯 | | |
| force-cache | ∅ | ✅ | response |
| only-if-cached | 🎯 | | |
| only-if-cached | ∅ | | |