Skip to main content

gRPC

Recommendation
Updated
Moved
USE
2021-09-08

What is it

From their website:

gRPC is a high performance, open source universal RPC framework.

gRPC uses protobuf schemas to declare APIs, also known as gRPC services. It leverages code generation to speed up development and improve robustness, by code generating serialization, deserialization, and network transmission of data.

When to use it

Use gRPC for declaring backend service APIs, and use the gRPC Go SDK to implement the service itself.

How to learn it