Browser Cache ๐พ
Cache Storage Demo ๐๏ธ
The Application panel in DevTools allows you to inspect and manage various storage types, including Cache Storage.
Cache Operations:
Cache status: not initialized
How to View Cache Storage: ๐
- Open DevTools (F12 or Right-click โ Inspect) ๐ ๏ธ
- Navigate to the "Application" tab ๐ฑ
- In the left sidebar, expand "Cache" under "Storage" ๐
- Click on "Cache Storage" to see all caches ๐๏ธ
- Click on specific cache names to view their contents ๐
How to Verify Network Caching: โ
- Open DevTools (F12) and go to the "Network" tab ๐
- Click "Add to Cache" button to cache resources โ
- Click "Fetch from Cache" to load from cache ๐
- Look for resources in the Network panel with "from disk cache" or "from memory cache" status ๐ฝ
- Note how subsequent requests are served from cache without network activity โก
Cache API Features ๐
The Cache API allows for storing network requests and responses for offline use or performance benefits:
- Add (put/add): Store responses in the cache โ
- Match: Retrieve cached responses ๐
- Update: Replace existing cached responses ๐
- Delete: Remove items from cache โ
- Keys: List all cached URLs ๐