Ask HN: Would you pay to reduce HTTP requests?
This process results in faster load times.
This process results in faster load times.
Please share your story about selling or licensing intellectual property (in this case code-based IP). Was it a net positive? Would you do something differently if you had the chance?
Thanks (in advance) for sharing.
Note: I am familiar with HTTP2 multiplexing.
Why is the standard approach still transactional?
I may have rather serendipitously implemented HTTP/3 support for a Flask-like CMS.
Does HTTP/3 reduce server requests by concatenating multi-resource requests into a single request conveyed through a "chained-path"?
For example:
Loading example.com/about requires loading style.css and favicon.ico.
HTTP/2 would request example.com/about, request style.css, request favicon.ico.
Does HTTP/3: request example.com/about & style.css & favicon.ico with a single request path similar to "/about/style.css/favicon.png"?
Any insight would be appreciated. Thanks!