Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Confirming HTTP caching with Fiddler

How can I use Fiddler to confirm that HTTP caching is working? Is there another better way?

like image 779
rp. Avatar asked Apr 24 '09 16:04

rp.


3 Answers

You can confirm caching by having a page fetch a resource and note that no request for the resource appeared in Fiddler. I can't think of a better way to do it. Works for me.

like image 70
AnthonyWJones Avatar answered Oct 15 '22 17:10

AnthonyWJones


right click the URL in the fiddler and click properties, you can check the cach info in that popup under "WININET CACHE INFO"

like image 41
user2531498 Avatar answered Oct 15 '22 17:10

user2531498


Browse the site through the Fiddler as proxy. In each response details, there's a tab "Caching". This shows useful info about the response headers - e.g. what the different Cache-Control and Expires values mean.

like image 2
Piskvor left the building Avatar answered Oct 15 '22 16:10

Piskvor left the building