Putting the current discussion of the issues with AppCache aside for a couple of minutes, there is no provision in HTML5 History to include pages "pushStated" into the current App Cache Group
Consider this flow: We have a multi paged app with pages A and B when rendered from the server sharing the same AppCache and thus in the same group.
Update the AppCache, A and B are re-downloaded and cached [see: Death by App Cache].
- User visits page A, it uses an app cache, so everything is cached.
- User navigates from A to B, page B is added to the app cache group.
- User goes offline
- User refreshes A it is served from the Cache, User refreshes B, it is served from the Cache.
Update the AppCache, A and B are re-downloaded and cached [see: Death by App Cache].
Now if we inject HTML5 History for the same flow:
- User visits page A, it uses an app cache, so everything is cached.
- User navigates from A to B (via pushState) ..... currently B is not added to the App Cache group.
- User goes offline
- User refreshes A it is served from the Cache, User refreshes B, fail, because not in the Cache.
Death by App Cache: The problem that we also faced was as master entries are added to an App Cache group, when an update to the App Cache occurs, all those pages in the App Cache are refreshed, with more dynamic applications this could mean that 10's or 100's of pages are quickly downloaded by the App Cache software and thus can quickly cause a mini DDOS.
I am interested to hear your thoughts.