Vishwajeet
Vishwajeet

Reputation: 1683

Check whether network response is coming from server or Chrome cache

In Google Chrome, how you can check which files are served from the browser cache, and which comes from the server?

Upvotes: 74

Views: 43539

Answers (2)

joshuakcockrell
joshuakcockrell

Reputation: 6113

If you can't see the size column then you may need to close this window

close the headers, preview, response tab

The size column will tell you if the response is coming from cache or over the network.

Upvotes: 7

James
James

Reputation: 82096

In Chrome Developer Tools switch to the Network tab and on the Size column it will either give you the size of the downloaded content or say (from disk/memory cache).

Cached requests

Upvotes: 91

Related Questions