is there a difference between these two shortcuts on most browsers?

link|improve this question

50% accept rate
My completely unresearched educated guess is that Ctrl+F5 generally refreshes the page without using cache while Ctrl+R or plain F5 refreshes the page using cache as normal. I also think this question belongs on Superuser. – MooGoo Oct 30 '10 at 20:42
feedback

migrated from stackoverflow.com Oct 30 '10 at 20:47

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 8 down vote accepted

Ctrl+F5 does indeed do a force cache purge for that page, while Ctrl+R does not.

link|improve this answer
so it is same as F5? – Infestor Oct 30 '10 at 21:05
1  
@Infestor, in Firefox F5 and Ctrl-R are the same. Ctrl-F5 and Ctrl-Shift-R are the same too. Of course, that's only one out of many browsers. – Arjan Oct 30 '10 at 22:59
(As an aside: using F5/Ctrl-R might make a browser still ask the server if the content has changed by using If-Modified-Since headers, hence still leaving it up to the server to serve new content or not. Hitting Ctrl-L to get to the location bar and pressing Return, or selecting a bookmark makes most browsers rely on their cache without asking the server about any changes.) – Arjan Oct 30 '10 at 23:08
feedback

Your Answer

 
or
required, but never shown

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