Re: Multi-GET, extreme compression?

On Sat, Feb 16, 2013 at 12:01 PM, Phillip Hallam-Baker <hallam@gmail.com> wrote:
> HTTP 1.1 has a request/response pattern. This covers 90% of needs but means
> that if the protocol is followed correctly forces a round trip delay on each
> content request. Which of course leads to various browsers pushing the
> envelope and pushing multiple requests out before responses have come back.
>
> With content streams this is not necessary of course... In fact that is
> pretty much the purpose of having streams.
>
> Which suggests a need for a Multi-GET method to allow a request for a list
> of content...
>
> If we had such a method then the format would be something like
>
> MGET <Common Headers> List <URI, Content header>
>
> And the typical communication pattern of a browser would be:
>
> GET /toplevel.html
> MGET </image1.jpg /image2.jpg ...>
>
> Given this particular communication pattern which has an implicit delta
> encoding, do we really need to worry about a separate delta encoding?

The problem here is that the user-agent needs to get the top-level
resource first, then it will know the names of the other resources.
We can probably do better.

Received on Tuesday, 19 February 2013 04:26:29 UTC