consider the following scenario:
- site/app is only used online - requires active internet connection;
- all files have proper expire header settings;
- forcing file refresh can be handled via something like myFile.css?v=2 and location.reload(true);
Will my site/app actually load faster if I use HTML5's appcache (manifest)? why? I've looked around but there seems to be no consistent answer to this question.
HTML5Rocks advises using appcache but I think it is mostly due to cache reloading management.
Follow-up question: what about caching files in localstorage? where does it stand comparing to the other two?