↧
How frequently do servers use chunked encoding for various content types?
Ilya Grigorik wrote: SELECT mimetype, resp_transfer_encoding, size, ROUND(ratio*100) as percent FROM ( SELECT mimeType, resp_transfer_encoding, size, RATIO_TO_REPORT(size) OVER(PARTITION BY mimeType)...
View ArticleHow frequently do servers use chunked encoding for various content types?
Steve Souders wrote: Why isn't it higher? This is especially important for HTML - since HTML is parsed in streaming fashion. I tried digging into this further by looking at the Server response header...
View ArticleHow frequently do servers use chunked encoding for various content types?
Ilya Grigorik wrote: Re, cloudflare: you do see them in #6 with 8% of responses. Not sure about Apache vs others, if you add up all the nginx versions in above lis then you're also looking at ~20%....
View Article