Hacker News new | ask | show | jobs
by andy_ppp 3424 days ago
It's a regression in the closing of the connection in the http server in the standard library.

If really worried about performance, the fasthttp package is much faster than the one included in go.

"In short, fasthttp server is up to 10 times faster than net/http."

https://github.com/valyala/fasthttp

2 comments

(And doesn't support HTTP/2, so pick your poison)
I thought the whole point of HTTP/2 was to transfer as many things as possible in one connection so maybe this bug is less of a concern for these types of connection.
The great thing is that now fasthttp can be a bit slower and still make that claim.