ASP.NET Core 2.2 kestrel server's performance issue
问题 I'm facing problem with kestrel server's performance. I have following scenario : TestClient(JMeter) -> DemoAPI-1(Kestrel) -> DemoAPI-2(IIS) I'm trying to create a sample application that could get the file content as and when requested. TestClient(100 Threads) requests to DemoAPI-1 which in turn request to DemoAPI-2. DemoAPI-2 reads a fixed XML file(1 MB max) and returns it's content as a response(In production DemoAPI-2 is not going to be exposed to outside world). When I tested direct