fasthttp
fasthttp copied to clipboard
Fast HTTP package for Go. Tuned for high performance. Zero memory allocations in hot paths. Up to 10x faster than net/http
net/http expose RoundTrip so it can integrate with opentracing by [overwrite the RoundTrip ](https://github.com/opentracing-contrib/go-stdlib/blob/master/nethttp/client.go#L27)function. while fasthttp client don't implement such interface and do not provide middleware. The only way to...
Hello, First, I would like to thank you for this awesome library. I'm not sure if this is an issue but I noticed this. On the `Request` struct, il you...
Something along the lines of this: https://cloud.ibm.com/docs/go?topic=go-fault-tolerance Is there any possibility to incorporate fasthttp into the code above or we can do one for our own use with a newer...
Currently fasthttp is successfully used by VertaMedia in a production serving up to 200K rps from more than 1.5M concurrent keep-alive connections per physical server. What's the spec of the...
Hi Is there any reliable CSRF protection library for fasthttp? If not yet, which among the following would be better? I would like to port one of these for fasthttp....
Hey, I just started to learn **golang** as well as **fashttp**. I tried to build a **fasthttp reverse proxy** using this [libary](https://github.com/yeqown/fasthttp-reverse-proxy) and later using the code from this [issue](https://github.com/valyala/fasthttp/issues/64#issuecomment-194880575)....
I can't seem to Peek the header value after using `SetCanonical` with a second capital letter like `ETag` or `WWW-`, I'm wondering if this is intended behaviour without using `ctx.Response.Header.DisableNormalizing()`....
Hi, Using HTTP Client, is it possible to group pending response from HTTP Client and process new HTTP Request? There are cases when the client is too slow and it...
https://github.com/valyala/fasthttp/blob/03813ae4bce8b5984118f62d5f017da3e87c9189/tcpdialer.go#L365 usually, dialing a host, that resovle to mullti ips. and If include the IP information in this `ErrDialTimeout`, we can know which server is the problem faster.
Hello, I just stumbled across this library and it seems to be very powerful. I hope it is okay to ask questions here, otherwise please let me know where I...