htmloffline-cachingmanifest.cachecache-manifesthtml5-appcache

Omit current page from HTML5 offline appcache but use cached resources


For performance purposes, I want to have some of my web pages use resources that have been cached for offline use (images, CSS, etc.) but to not have the page itself cached as the content will be generated dynamically.

One way to do this would be to refactor my pages so that they load the dynamic content via AJAX or by looking things up in LocalStorage. Details may vary, but broadly speaking, something like that.

If it's possible, I'd prefer to find a way to simply instruct the browser to use cached resources (again, images, CSS, etc.) for the page but to not actually cache the (dynamically generated) HTML content itself.

Is there a way to do that with HTML5 offline appcache? I'm under the impression that the answer is "no" because:

Am I wrong about that? It seems like there is probably some tricky (or not-so-tricky) way around that. Now that I've typed it out, I wonder if including the page explicitly in the NETWORK section of the appcache manifest will do the trick.


Solution

  • My answer is "yes".

    I have worked on a web-app where I listed all the necessary resources in the manifest, and set the NETWORK section to *.

    The manifest is then included only on the main landing page. So all resources are cached the first time you visit the site and and it works a treat.

    In short,