Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I recently discovered this new feature in chrome :

enter image description here

I can figure out the difference between option 1 and option 3, and that option 2 is probably something in between, but I can't find any more precise information anywhere.

Anybody know the precise behavior of each of the 3 options ?

share|improve this question
Could you explain "this feature"? Specifically: how do you access it? I tried all kinds of right-clicks, control-clicks, ... but couldn't get it. What version is this? – Joachim Sauer Feb 20 at 16:25
1  
@JoachimSauer Haha that's my little secret... Seriously it's extremely well hidden: you have to press the refresh button without releasing it immediately while the developer console is active samuelrossille.com/home/blog-chrome-reload-options.html – Samuel Rossille Feb 20 at 16:46

1 Answer

up vote 9 down vote accepted

Normal reload

The same thing as pressing f5. This will use the cache in every way possible. If the browser can avoid re-downloading JavaScript files, images, text files, etc. then it will.


Hard reload

Don't use anything in the cache when making the request. Force the browser do re-download every JavaScript file, image, text file, etc.


Empty Cache and Hard Reload

Obviously if the cache is empty then it will have to do a hard reload. This will again force the browser to re-download everything. However, if the page makes any after-the-fact downloads via JavaScript that weren't part of page load, then these might still use the cache, which is where emptying the cache helps because it makes sure that even these won't use cached files.

share|improve this answer
Perfectly clear, thank you! – Samuel Rossille Feb 20 at 5:10
3  
Does anyone know if the third option just empties the cache for the current site, vs emptying the entire cache? – Grinn Apr 18 at 0:35
@Grinn: I don't, but I'd love to. You could ask that question on Stack Overflow. – arasmussen Apr 18 at 17:22
1  
@Grinn: Actually, now that I think of it, it's probably the entire cache. The point of that feature is to clear after-the-fact downloads, which aren't restricted to just one "site". – arasmussen Apr 18 at 20:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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