Do Chrome and Firefox share a browser cache?

3

So I was having a problem with some stuff on SO not working that was similar to this post on Meta which recommended clearing the browser cache.

Now it wasn't working in both Chrome and Firefox and I had never logged in to SO on FF before today so FF couldn't have cached the file itself. Tried hitting refresh multiple times and even tried Ctrl-F5 with no luck.

I cleared the browser cache in Chrome only, and after that it started working on both Chrome and FF. How could clearing the cache of one browser affect the other?

Davy8

Posted 2010-06-26T18:59:53.833

Reputation: 221

Had issues on FF today as well, can't figure it out. IE works fine, cleaning FF doesn't help (even its DNS cache via plugin). – Mau – 2010-06-26T19:05:19.803

Answers

7

The browsers do not share a cache, but plugins might. Like Adobe Flash keeps cross-browser history and "local shared objects", which can be used in a cookie-like way. Clearing a cache in a browser usually does not remove the information stored by such plugin.

Arjan

Posted 2010-06-26T18:59:53.833

Reputation: 29 084

"Like Adobe Flash keeps cross-browser history" sounds like a security issue – MicroMachine – 2019-01-16T19:22:01.023

"Like Adobe Flash" sounds like a security issue. – Rafael Aguilar – 2019-01-24T12:44:10.790

0

On Linux they don't share cache, they've different folders. Maybe it's the cache at the web server, this usually happens to me when coding modules for joomla or drupal and some $_SESSION (in php) are still saved and make the website look different on different browsers.

Skatox

Posted 2010-06-26T18:59:53.833

Reputation: 101

Server-side sessions like those maintained by $_SESSION often rely on cookies, and cookies are not shared across browsers. Hence, each browser would have its own session. – Arjan – 2010-12-27T11:12:42.330