|
|
|
|
|
by ahuang
2585 days ago
|
|
gRPC isn't a requirement for response streaming (as is quoted as one of the main reasons for doing the migration). That can all be achieved with http/json using chunked encoding. In fact, that's what the gRPC-gateway (http/json gateway to a gRPC service) does https://github.com/grpc-ecosystem/grpc-gateway. gRPC adds bi-directional streaming which is not possible in http, but the use cases for that are more specialized. |
|