I'd like to create a button on my site that COMPLETELY clears my cache. As neither Safari's nor Chrome's features work at all it seems. Is this possible?

link|improve this question

1  
You can't, you shouldn't, and you probably don't need to. Something else is going on. – trutheality Jun 27 '11 at 3:13
feedback

3 Answers

up vote 5 down vote accepted

Not possible. That'd expose low-level functionality to public access. Even if an exploit would simply empty your cache, it'd still be undesireable. Firefox and Chrome both use shift-ctrl-del for this, so at the cost of actually having to use your keyboard, you can do the same thing without the security risk.

link|improve this answer
The problem is it doesn't WORK. Even after I hit "clear cache", I refresh and I'm still getting response headers instead of request headers. :/ – Jackson Gariety Jun 27 '11 at 3:06
@Jackson: Wait...you should expect to get response headers. The request headers go to the server and responses come back. If the browser is returning cached information then you will not see a request on the server. – Cameron Skinner Jun 27 '11 at 3:10
perhaps your issue is with an isp\corporate\firewall\router cache. the browser is not the only thing that caches web traffic. – Dagon Jun 27 '11 at 3:13
feedback

Highly doubt this is possible moreover you want it to be cross-browser. It will create serious security flaw to be exploit.

link|improve this answer
feedback

It sounds like you want to clear the cached data that sits between your server and your browser, not the data that the browser has cached. A copy of your resources mat be sitting on a machine between your client computer and your server, and that is returning the cached copy, instead of asking your server for the data again.

You should read up on different caching methods, so you can set up certain types of files to be cached for a certain amount of time etc. Try this for starters.


I usually set up static resources (css, js, etc.) to be cached for a long period of time, but I change the URL when I have made changes to it. I usually do this by rewriting the request url so /resources/dummy/file.css becomes /resources/file.css and I can change dummy whenever I want. This creates the allusion of a different file (that hasn't been cached yet) but I don't have to rename the file.

RewriteRule  resources/[^/]+/([^/]+)$  resources/$1
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.