up vote 1 down vote favorite
share [g+] share [fb]

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?

link|improve this question

60% accept rate
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 Jun 26 '10 at 19:05
2  
@the belongs on meta votes, SO happened to be the site that I saw it it happen on, but I think the question is agnostic to which site it occured on. I always assumed that browsers acted independently one one another, but this experience seems to indicate otherwise – Davy8 Jun 26 '10 at 19:07
feedback

migrated from stackoverflow.com Jun 28 '10 at 1:38

This question came from our site for professional and enthusiast programmers.

2 Answers

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.

link|improve this answer
feedback

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.

link|improve this answer
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 Dec 27 '10 at 11:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.