There's already a question about this (What is it about web browser cache design that causes performance to degrade when the cache grows), but there's no answer in that question. So here's my three part question.
- Does clearing the browser cache really improve performance?
- If so, why? Is there any hard data?
- What is the magnitude of the slow down?
The most detailed explanation I can find is http://www.stevesouders.com/blog/2010/04/26/call-to-improve-browser-caching/, which just says
The data shows that 55% of people surveyed have a cache that’s over 90% full.
One of the first hits on Google is http://www.nyu.edu/its/faq/cache.html:
Over time, this process may actually begin to slow down your browser as large amounts of data are saved to your hard drive.
That doesn't seem like enough of an explanation. It seems to me that a new browser should be able to manage the cache better, but I also know that things that seem intuitive often aren't so simple. Does the cache eventually reach a state similar to thrashing where it's constantly removing things from the cache to put things into the cache?
Thanks!