I am reading Local Storage in HTML5 and I am starting to view it as a client version as I use memcached. It got me thinking - I'm currently doing page-level caching in memcache.
Is this possible with localStorage? That is, can the assembled page store itself (or, more importantly, maybe parts of itself) in localStorage, so the client does not have to work with the DOM so hard the next time the user displays the page?
It seems to me that since things are only stored as strings, this may not work if there is no string to convert objects to.
buley source share