During normal browser caching, will a browser re-fetch all file contents if the web server breaks and reopens a tcp connection to the client?

Or will it still cache all contents and only update what has changed, upon the new socket (no difference)?

Thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Browsers operate via HTTP protocol. What they can cache and for how long is determined by special instructions of the HTTP protocol (e.g. cache-control header).

Those instructions can be specified by web server. On the other hand browsers can try to cache as much as possible unless it is forbidden by special HTTP instruction or it violates HTTP protocol, or leads to unpredictable behaviour.

Concerning caching and new TCP connections: TCP here is a mere transport for HTTP protocol, so it should have no impact on browser cache.

link|improve this answer
thank you for the link and info. – Tommy Feb 27 at 21:23
feedback

Most modern browsers will cache as much of the content as they can and only re-fetch portions that have changed. Of course, this is necessarily limited by the size of the browser's cache, whether the remote web server properly informs the browser of the age of the components it is trying to fetch, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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