Does fasthttp still not allow streamed responses?
The last time I tested fasthttp (both the server and client), it always attempted to load the entire responses into the RAM even though there were properties like `SteamBody` and `StreamRequestBody`
Has anyone tested fasthttp recently and was able to successfully stream both the client and server responses?
I currently use net/http but the GC is starting to become a limitation because of how many allocations the net/http client makes.
I already have connection pooling enabled for my net/http client but it's not helping when I'm making thousands of short-lived requests to different hosts per second
I really wish we could pool the internal `bufio.Reader` and `bufio.Writer` of the net/http client with ease, it would've made a lot of things much better and the number of memory allocations would be cut down by a lot