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?
|
|
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?
|
||
|
|
|
|
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. |
||
|
|
|
|
If you use an HTTP traffic analyzer like Fiddler you should see that requests for JavaScript and CSS resources return an HTTP code For even better performance you can explicitly set caching headers for these resources. This caching tutorial has great info. |
|||
|
|
|
|
You should explicitly set caching headers if you want caching. www.fiddler2.com/redir/?id=httpperf |
||
|
|