freeqaz
This is the link you want if you want to read the actual meaty contents of this page. Took me a sec to find. https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-com...
bcoates
Any evidence this actually causes material performance improvement?

Pre-shared compression dictionaries are rarely seen in the wild because they rarely provide meaningful benefit, particularly in the cases you care about most.

dexterdog
Why can't we implement caching on the integrity sha of the library so they can be shared across sites? Sure there is technically an attack vector there but that is pretty easily scannable for tampering by verifying with trusted CDNs.

With something like that you could preload all of the most common libraries in the background.

kevincox
It is interesting that a proxy won't be able to see the complete response anymore. It will see the dictionary ID and hash but without a copy the server's response won't be fully intelligible to it.
hedora
I’m guessing the primary use case for this will be setting cookies. (Google fonts or whatever sends different dictionaries to different clients, the decompression result is unique per client).

I wonder what percentage of http traffic is redundant compression dictionaries. How much could this actually help in theory?

wmf
Interesting that they removed SDCH in 2017 and now they're adding it back. Let's hope this version sticks.
londons_explore
This is going to go the same way as HTTP/2 Server Push (removed from Chrome in 2022).

Great tech promising amazing efficiencies and speedups, but programmers are too lazy to use them correctly, so they see barely any use, and the few places it is used correctly are overshadowed by the few places it is used wrongly hurting performance.

Lesson: Tech that leads to the same page loading slightly faster generally won't be used unless they are fully automatic and enabled by default.

Http push required extra config on the server to decide what to push. This requires extra headers to determine what content to compress against (and the server to store that old/common content).

Neither will succeed because the vast majority of developers don't care about that last little bit of loading speed.