Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does "Empty Cache and Hard Reload" empty the entire cache or just parts relevant to the current site?

Does "Empty Cache and Hard Reload" in Chromium/Chrome empty the entire cache or just parts relevant to the current site?

My inkling is that it empties absolutely all cached resources (as suggested in the comment to this answer).

However, a definitive answer would be helpful.

like image 664
Matthew Flaschen Avatar asked May 20 '14 23:05

Matthew Flaschen


1 Answers

It empties the entire cache.

You can verify this with these steps:

  • Browse through a few sites (reddit, stack overflow, ...)
  • Enter chrome://cache into the omnibox
  • Save the list of files
  • Go to a basic website with no external resources like example.com
  • Open the developer console, right click on Refresh, and select Empty Cache and Hard Reload
  • Enter chrome://cache into the omnibox again
  • Compare the list of cached files with the list you saved in the third step. Files that were cached by Reddit and Stack Overflow will be gone, even though they are not referenced by example.com.
like image 194
Chris Barker Avatar answered Oct 07 '22 19:10

Chris Barker