vote up 2 vote down star

We have multiple pages on a website which require many of the same Javascript and CSS files.

How do we avoid those files being downloaded again if it has already been downloaded by the user browsing some other page?

flag

33% accept rate

3 Answers

vote up 4 vote down

If the file is in the same path, the browser should automatically cache it. You may want to explicitly specify the cache expiry time, if possible via your web server or programming environment.

link|flag
vote up 3 vote down

If you use an HTTP traffic analyzer like Fiddler you should see that requests for JavaScript and CSS resources return an HTTP code 304 (Not Modified). This tells the browser "the version of the resource you have in your cache is the same as the one on the server so you don't need to download it again".

For even better performance you can explicitly set caching headers for these resources.

This caching tutorial has great info.

link|flag
vote up 0 vote down

You should explicitly set caching headers if you want caching. www.fiddler2.com/redir/?id=httpperf

link|flag

Your Answer

Get an OpenID
or

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