Does fiber support http 2 or are there any plans to.
Thanks.
Thanks for opening your first issue here! 馃帀 Be sure to follow the issue template! If you want to chat with us or need help, join us on our Discord server: https://gofiber.io/discord
Does fiber support http 2 or are there any plans to.
Thanks.
Hello, we use the lib FastHTTP as our HTTP server, and it doesn't implement yet supported to http2.
TODO:
- HTTP/2.0. See https://tools.ietf.org/html/rfc7540 .
But it being implemented support the HTTP2 in this link
https://github.com/fasthttp/http2
Well, coming soon we have support in Fiber.
@shiftrtech thanks for opening your first issue, welcome!
Like @renanbastos93 mentioned, we run on the Fasthttp engine and it currently has no support for HTTP/2.0.
Keep in mind that HTTP/2.0 is often taken care off by any load balancer / proxy like NGINX, Cloudflare, Akamai etc and they do not support HTTP/2.0 communication to the backend server.
NGINX also has no plans to support HTTP/2 for ProxyPass connections :
_There is almost no sense to implement it, as the main HTTP/2 benefit is that it allows multiplexing many requests within a single connection, thus [almost] removing the limit on number of simalteneous requests - and there is no such limit when talking to your own backends. Moreover, things may even become worse when using HTTP/2 to backends, due to single TCP connection being used instead of multiple ones._
But as soon Fasthttp will support HTTP/2, we will too 馃憤 I hope this answered your question.
At my work, we give support to http/2.0 too. We have a CDN and working with Edge Computing. www.azion.com
@aziontech
@shiftrtech I hope this answers your question, feel free to re-open :+1:
Most helpful comment
Hello, we use the lib FastHTTP as our HTTP server, and it doesn't implement yet supported to http2.
TODO:
- HTTP/2.0. See https://tools.ietf.org/html/rfc7540 .
But it being implemented support the HTTP2 in this link
https://github.com/fasthttp/http2
Well, coming soon we have support in Fiber.