Your cpp mt benchmark does not take advantage of the grpc async modes.
There is always only one CallData in one thread, which will have adverse side effects in grpc-server receiving packets.
You can pre-create more than one CallData(tag)s registered into the server.
Your cpp mt benchmark does not take advantage of the grpc async modes. There is always only one
CallData
in one thread, which will have adverse side effects in grpc-server receiving packets. You can pre-create more than oneCallData(tag)s
registered into the server.