top | item 46429754

(no title)

lambdaloop | 2 months ago

Does streaming compression work if some packets are lost or arrive in a different order? Seems like the compression context may end up different on the encoding/decoding side.. or is that handled somehow?

discuss

order

dgoldstein0|2 months ago

I think the underlying protocol would have to guarantee in order delivery - either via tcp (for http1, 2, or spdy), or in http3, within a single stream.

duskwuff|2 months ago

It sounds as though the data is being transferred over HTTP, so packet loss/reordering is all handled by TCP.

dgoldstein0|2 months ago

Yes, or by http3's in order guarantees on the individual streams (as http3 is udp)