Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find out if IE11 loaded a resource from cache

With Chrome devtools I can check if cache was used to load a resource in the network tab. If it was used it says <from cache>. I see nothing similar in IE11 developer tools.

How do I figure out if cache was used to load a given resource?

like image 753
George Mauer Avatar asked Mar 26 '15 15:03

George Mauer


1 Answers

It looks like cached resources show up as greyed out 304's in the network capture when "always reload from server" is turned off.

Also, I would first check if expiration headers are set on the resource. IE "SHOULD" respect those. You can also test this by setting the expiration as immediate and seeing if network traffic has occurred to reload the resource.

like image 144
Chris Avatar answered Nov 09 '22 07:11

Chris