Matt
Matt

Reputation: 27001

Does Chrome's Developer Tools have an option to disable cache as firebug does?

Does Chrome's Developer Tools have an option to disable cache as firebug does? If so would someone be so kind as to point me towards it?

Upvotes: 2

Views: 3430

Answers (1)

feklee
feklee

Reputation: 7705

In Issue 8742 in the Chromium issue tracker a comment has been added just some hours ago:

There is now a checkbox for disabling cache in settings.

So there is hope that the feature to disable cache will finally make its way into Chrome. In the meantime, I put into my development server's Apache config:

Header set Cache-Control "no-cache"

Guess that should do the trick.

Update: In Chrome 15's Developer Tools settings (cogwheel in lower right hand corner) there is an option Network / Disable cache. Also you can clear the cache easily by right clicking in the network tab and selecting Clear browser cache.

Upvotes: 7

Related Questions