340

Does Chrome have an equivalent to Firefox's Ctrl+F5 refresh? I can't seem to find one.

I changed my gravatar last night, and I can see the new one in Firefox after a Ctrl+F5 refresh, but Chrome seems to be stubbornly hanging on to the old Gravatar. I guess I could manually clear out the cache, but if there is a keyboard command to do it I'd like to know what it is (since it would be helpful for web development too).

Oliver Salzburg
  • 89,072
  • 65
  • 269
  • 311
Kip
  • 4,634

11 Answers11

225

In the opened developer tools (Ctrl+Shft+I or ++I):

  1. Select the Network tab
  2. Activate Disable cache check-box.
  3. DO NOT CLOSE Developer tools - otherwise cache is re-enabled.

enter image description here

Mark
  • 520
  • 1
  • 6
  • 13
Chris
  • 2,251
221

Chrome documentation states that Ctrl+F5 or Shift+F5 should do "Reloads your current page, ignoring cached content. "

If it is not working, you can file a bug report, but it looks like quite a few other people are having the same issue.

[Existing bug log on this issue] Closed as a duplicate, the issue remmains:

[Issue: 94090]

givanse
  • 180
William Hilsum
  • 117,648
106

On a Mac, it's Shift+Command+R, or holding down Shift while clicking the reload button (as opposed to Command+R or a normal click for a regular refresh).

Some more details:

For Shift+Command+R, cache is simply ignored and resources are requested like no cache existed.

For Command+R, Chrome will issue If-Modified-Since or Etag requests to the web server, even for things that are actually cached. For most, if not all, content the server should then respond with 304 Not Modified. This is true for most, if not all, modern browsers.

The only way to force relying on the cache (without the browser even asking for possible changes) seems to be clicking a link on the web page, or by following a bookmarked link, or by going into the URL location bar and hitting Return there (Command+L, Return).

However: a longstanding known issue in Chrome, Chrome Forced Refresh does not ignore cache (and the more recent Reload/Refresh does not refresh), or maybe actually a feature in WebKit, Dynamically inserted subresources aren't revalidated even when the containing document is reloaded, makes Chrome not clear ALL related caches when using the above methods. A Chromium developer explains:

The network tab of the developer tools show a waterfall of all resources as they are loaded. There are two vertical lines at the right hand side... one of them is labeled "Load event fired" on hover. Anything loading after that point is not officially part of the page (a page can keep issuing requests for hours) [...] so it will NOT be "refreshed" with any combination of f5. This is by design.
[...]
Caching [of any resource, before and after the "Load event fired" line] is determined by the HTTP headers of the response, not by the time the request was issued.

Also note a @ChromiumDev's tweet:

Chrome DevTools' Disable Cache invalidates the disk cache (great for developing!), but.. only while devtools is visible.

Arjan
  • 31,511
22

UPDATE: This answer is outdated

  1. Pull up console
  2. Click in right-bottom to cog icon
  3. Tick [General > Disable cache]
  4. Reload page (however)!
  5. Keep the developer tools open (UPDATE)

Arjan
  • 31,511
sobi3ch
  • 1,448
19

The question is a bit old, but in the recent version of Chrome

  • Open the Developer tools using F12 or Ctrl+Shift+I
  • Right-click the Refresh button, and select Empty cache and Hard reload

This will bypass the cache and reload the page fully.

The doc says Ctrl+F5 or Shift+F5 but unfortunately as of today the bug is still not solved :-(

Déjà vu
  • 703
10

I have files (images and full html pages) on the server that get updated and no key combination in chrome seems to force fetching them.

I rely on chrome´s incognito mode - CTRL-SHIFT-N - when I need to force refresh.

Note that CTRL-R or CTRL-F5 while inside an incognito window doesn´t seem to work either. You must close and reopen the incognito window - hence my reliance on shortcuts - CTRL-W to close, CTRL-SHIFT-N to reopen.

6

There definitely is no simple way to do this in Chrome like other browsers. The documentation may say that CTRL+F5 or SHIFT+F5 should reload and ignore cache, but it simply doesn't. I have a flash slideshow that stores the settings/configuration in an .xml file, and after updating the XML file, Chrome will still load the cached version unless I purge the cache. I always have to run another browser when updating the slideshow so I don't have to clear my Chrome cache all the time.

6

Definitely a bug in Chrome - it's also images that should be changed, but it uses the old image instead, even after repeatedly hitting Ctrl + F5.

I was trying to change my Google Apps logo, but the only way it will change on Gmail is if I use incognito mode or clear the entire cache. Ctrl + F5 keeps the old logo.

Diogo
  • 30,792
Gabe
  • 61
5

Ctrl - Shift - Delete will allow you to remove cache for the previous hour. That will assure that the next time you reload a site it is fresh.

J Baron
  • 920
3

I did this: Right Click the FRAME (that was out of sync), and SHIFT clicked the "Reload Frame" option. The frame then refreshed properly.

Mokubai
  • 95,412
Kirk
  • 31
3

To clear the explicitly specified application cache navigating to chrome://appcache-internals/ on chrome and removing the cache for specific web sites.

Lord Loh.
  • 1,034