What is gRPC ?
https://en.wikipedia.org/wiki/GRPC
Why?
- first benefit, gRPC has the ability to break free from the call-and-response architecture necessitated by HTTP + JSON. gRPC is also built on top of HTTP/2, which allows for client-side and/or server-side streaming
- an important benefit comes from the explicit format specification of proto, meaning that clients receive typed objects rather than free-form JSON
- Gallactic blockchain supports gRPC! :)
What is gRPC ?
https://en.wikipedia.org/wiki/GRPC
Why?