https://blog.cloudflare.com/http-3-from-root-to-tip/
So, it seems like QUIC has been renamed to HTTP/3, probably since it simplifies it for everyone.
This article goes over it's history and I believe there implementations for varying versions of QUIC in Go and Rust.
QUIC is amazing for mobile performance as a connection can be established with zero round-trips, even if the mobile's IP Address changes (e.g. if the connection drops or you're moved between zones and it just happens to migrate you somewhere else), so it can just continue where it left off without having to wait for packets to bounce back and forth between it and the server a few times to resume.
This is particularly good for clients which are very distant from the physical server, as the speed of light and some other things are big factors in performance.
Chrome supports QUIC, but only the older ones which are covered in Go (as-well as the newer ones), while the Rust implementation only covers the newer versions, to my knowledge. Cloudflare is working on bringing QUIC to it's customers, but it seems to be in alpha at the moment.
So, it seems like QUIC has been renamed to HTTP/3, probably since it simplifies it for everyone.
This article goes over it's history and I believe there implementations for varying versions of QUIC in Go and Rust.
QUIC is amazing for mobile performance as a connection can be established with zero round-trips, even if the mobile's IP Address changes (e.g. if the connection drops or you're moved between zones and it just happens to migrate you somewhere else), so it can just continue where it left off without having to wait for packets to bounce back and forth between it and the server a few times to resume.
This is particularly good for clients which are very distant from the physical server, as the speed of light and some other things are big factors in performance.
Chrome supports QUIC, but only the older ones which are covered in Go (as-well as the newer ones), while the Rust implementation only covers the newer versions, to my knowledge. Cloudflare is working on bringing QUIC to it's customers, but it seems to be in alpha at the moment.







