[Solved] why is fasthttp like single process?

I think instead of fasthttp is single process?, you’re asking whether fasthttp handles client requests concurrently or not? I’m pretty sure that any server (including fasthttp) package will handle client requests concurrently. You should write a test/benchmark instead of manually access the server through several browsers. The following is an example of such test code: … Read more