How can I clear the application cache in IE10?
Asked Answered
F

3

6

In Internet Explorer 10, how can I manually clear the application cache for a Web page?

Forbiddance answered 28/3, 2013 at 22:7 Comment(1)
Programmatically or manually?Thorstein
G
12

I'm guessing you figured this out, but you can clear cache in IE10 like so:

Tools-> Internet Options -> Settings (in Browsing history section) -> Caches and databases tab

You should see all sites that currently have caches and you can clear them from here as needed. This is what the window looks like:

enter image description here

Grummet answered 20/5, 2013 at 21:31 Comment(0)
C
0

I can't leave a comment, but I would like to point out that Browser Cache & Application Cache are 2 different things. Although, I can't seem to figure out how to clear appcache in IE even after looking at Microsoft's website.

Cherey answered 4/3, 2014 at 19:27 Comment(2)
You are correct that the Browser cache is different than Application Cache, but my answer above is talking about Application Cache... which is what the question is asking for. Did the method I mentioned not work for you? I just checked in IE11, and it looks like it's still in the same place.Grummet
It looks different than when I last read it. I read it before lunch, perhaps that's why... I just tried it,though, & yes, it does work. Sorry about that. I guess hunger makes funny things happen.Cherey
B
0

If you want to only clear the application cache without clearing localstorage and indexeddb too (which is advisable if you're just debugging a javascript and have huge indexeddb datastores), I found that you can:

  1. clear the "normal" cache, so you don't risk having the browser picking resources from there after page reload, instead of downloading them from the server

  2. issue delete applicationCache in the console of the Development Tools

Braunschweig answered 8/8, 2014 at 15:35 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.