grpc 服务器是否使用一个新的 goroutine 来处理一个方法调用?
Does the grpc server use one new goroutine to process one method call?
golang grpc实现如何处理服务器并发?
每个方法调用一个 goroutine?或者某种 goroutine 池?
是否依赖于net/http2的并发模型?
每个方法调用一个 goroutine。当前没有用于服务处理程序的 goroutine 池。
它不依赖于 net/http2 并发模型。
https://github.com/grpc/grpc-go/blob/master/Documentation/concurrency.md#servers
golang grpc实现如何处理服务器并发?
每个方法调用一个 goroutine?或者某种 goroutine 池?
是否依赖于net/http2的并发模型?
每个方法调用一个 goroutine。当前没有用于服务处理程序的 goroutine 池。
它不依赖于 net/http2 并发模型。
https://github.com/grpc/grpc-go/blob/master/Documentation/concurrency.md#servers