Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Local storage is a bad fit for caching. You can compose the document from smaller fragments and leverage the browser cache. It’s simple AJAX. That’s what I meant by gradual caching.

I thought a bit about your solution, and I guess it’s doable using existing technology AND leveraging gradual caching without JS.

Browsers would just have to support Xinclude[1].

For example:

    > GET /foo

    < 200 OK HTTP/1.1
    < ETag: 1
    <?xml version="1.0"?>
    <html xmlns="http://www.w3.org/1999/xhtml
          xmlns:xi="http://www.w3.org/2001/XInclude>
       <head>...</head>
       <body>
          ...
          <p><xi:include href="fragment" parse="text"/></p>
       </body>
    </html>
Using standard HTTP/1.1 session protocol this would require additionally requesting /foo/fragment, SPDY can just use SS push.

    > GET /foo/fragment

    < 200 OK HTTP/1.1
    < Etag: 1
    […]
Now on refresh conditional GET for /foo hits cache, and conditional GET for /foo/fragment doesn’t. Abracadabra: partial caching.

    > GET /foo 
    > If-None-Match: 1

    < 304 Not Modified HTTP/1.1

    > GET /foo/fragment
    > If-None-Match: 1

    < 200 OK HTTP/1.1
    < Etag: 2
    […]
While it looks like some new technology, it’s simple really. Browsers already compose pages by fetching scripts, images, embedded objects, iframes. This is not that different.

Moreover, this approach provides backwards compatibility, because if the browser doesn’t resolve XInclude, you can just do that yourself using AJAX.

This solves your problem, but requires changes only on the client side.

[1] https://en.wikipedia.org/wiki/XInclude



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: