2

How to cache all the pages of your web application without browsing each and every page of your application? How can I achieve this?
Any suggestions/ideas are welcome.

Comments
  • 2
    let your users cache, or write a script which crawls through your app or optimize for no cache at all
  • 2
    The point of caching is to avoid transferring the data multiple times on multiple visits. Transferring pages that aren't even visited is useless bloat.
Add Comment