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

I am modifying a site's appearance (css modifications) but can't see the result on chrome because of annoying persistent cache. I tried shift+refresh but it doesn't work. how can i disable the cache temporarily or refresh the page in some way that the I could see the changes?

thanks.

share|improve this question
9  
This is probably the single worst Chrome bug. I've wasted far too much time wondering why things were coming out wrong, only to find that--despite having forced a complete reload with ^F5--it's using an hour-old stale resource. – Glenn Maynard Jul 27 '12 at 16:58
2  
Browsers are supposed to cache. Remember, your users will also be caching - and so may not see changes that you make after your site is in production. The way to avoid this is to version your files. my_css.css?version=something_unique. If the browser hasn't seen the version before then it downloads the file again. something_unique could, for example, be last modifed date. – user984003 Jan 30 at 7:34
1  
@user984003 Ctrl+Shift+R or Shift+R should flush the cache... – Adonis K. Feb 3 at 12:52

9 Answers

up vote 369 down vote accepted

There is a gear in the bottom right hand corner of the developer tools called settings that allows you to disable the cache.

On the pc you can open that by pressing ctrl+shift+i

or on the mac command+option+i

developer tool shortcuts

In build 15-18 it can be found under Network.

In build >= 19 they moved this setting into General.

photo of how to disable cache disable cache in 19

google bug tracker

A recent tweet from ChromiumDev states

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

share|improve this answer
2  
@Quantum7 updated the answer to add mac. – Steve Mar 5 '12 at 16:27
22  
From my experience, this setting (and all settings on that panel) only takes effect when the dev tools are open. – Johann Mar 7 '12 at 22:33
2  
This is no longer under "Network", but now under "General". – Phrogz May 16 '12 at 2:55
1  
updated. thanks @Phrogz – Steve May 16 '12 at 16:19
1  
This is so the key... "only while devtools is visible." – Justin Ohms Mar 28 at 20:40
show 13 more comments

In addition to the disable cache option (which you get to via a button in the lower right corner of the developer tools window -- Tools | Developer Tools, or Ctrl + Shift + I), on the network pane of the developer tools you can now right click and choose "Clear Cache" from the popup menu.

share|improve this answer

To be clear, the disable cache checkbox in Chrome (v17 here, but since v15 I believe) is not in the main settings UI. It is in the developer tools settings UI.

  1. From the browser window's wrench icon menu (prefs menu) choose Tools → Developer Tools

  2. In the developer tools UI that appears, click the gear icon at bottom right.

  3. Check the 'Disable cache' checkbox in the Network section.

share|improve this answer

Using Ctrl+Shift+R to refresh was nice but didn't get everything I needed. still some things wouldn't refresh, such as data stored in js and css. found a solution: a toolbar of google for chrome web developers. After you install the toolbar select options and "reset page".

share|improve this answer
1  
+1. Still not perfect though: For developing on a local computer the cache is completely unneccessary and will introduce problems, so I would still be interested in a disable-feature like firebug has. – c089 May 18 '11 at 6:54

I found the hoops you had to jump through to clear the cache too annoying when you need to clear the cache 30 times an hour.. so I installed a Chrome Extension called "Cache Killer" that clears the cache on every page load.

https://chrome.google.com/webstore/detail/jpfbieopdmepaolggioebjmedmclkbap

Now my mock json data refreshes automatically on every page load.

There are about 20 cache cleaners for Chrome I found, but this one seemed lightweight and zero effort. The only catch is (at present) you have to enable it to start it, rather than be enabled by default.

Note: I do not know the plugin author in any way. I just found it useful.

UPDATE: Cache Killer can now stay "always on"

share|improve this answer
Cache Killer is awesome. +1 – nbrogi Apr 26 at 8:18

In the Canary Channel (and maybe the dev and stable channel will follow along) this is to be found as the second option overall on the left hand-side under the "General" section.

Disable Cache in Chrome Canary Channel

In addition to that, there is always the option to switch into Incognito Mode via Ctrl + Shift + N. Even though that unfortunately also ends your session.

share|improve this answer

Disable cache in chrome only works when you have dev tools open

share|improve this answer
yup, you are right. Any idea why so? – Mr_Green Mar 28 at 10:45

There is a chrome extension available in the chrome web store named Clear Cache.

I use it every day and its a very useful tool I think. You can use it as a reload button and can clear the cache and if you like also cookies, locale storage, form data etc. Also you can define on which domain this happens. So can clear all this shit with only the reload button which you anyway have to press - on your chosen domains.

Very very nice!

You also can define a Keyboard Shortcut for this in the options!

share|improve this answer
Can't find the option to define on which domain it does it. Doesn't look very good. How about chrome.google.com/webstore/detail/cache-killer/… ..? – nbrogi Apr 26 at 8:14
go to clearcache icon in the browser, rightclick, options and then under cookies. There is a little settings icon. – chris Apr 26 at 12:57
Got it. Thanks! – nbrogi Apr 26 at 15:11

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.