grpc服务器是否使用一个新的goroutine处理一个方法调用?

How does golang grpc implementation handle the server concurrency?

One goroutine per method call? Or sort of goroutine pool?

Does it depend on the concurrency model of net/http2?

One goroutine per method call. There's current no goroutine pool for service handlers.

It doesn't depend on net/http2 concurrency model.

https://github.com/grpc/grpc-go/blob/master/Documentation/concurrency.md#servers