Erik Dubbelboer
Erik Dubbelboer
Why do you want to set keepBodyBuffer to true? Without it memory is also reused, just between different requests using a pool.
So you want to keep reusing the `fasthttp.Response` multiple times for this heavy call, without calling `fasthttp.ReleaseResponse(resp)`? Because you have other light calls that you don't want to get mixed...
At 2000 connections I still see a 99% latency of 201.06ms. Is that not good? I makes sense that as the number of connections grows the latency increases as both...