DEV Community

Cover image for Build Performant Servers with gRPC and Protocol Buffers

Build Performant Servers with gRPC and Protocol Buffers

atanda nafiu on August 24, 2023

Streaming large data set have a heavy cost on memory and performance in I/O. The modern serialized and deserialized data method uses protocol buffe...
Collapse
 
dyfet profile image
David Sugar

The async streaming resquest/response model is used a lot of other kinds of services, too. Go does make it easy to map the protobuf structures to structs. This model was never well explained in other go grpc examples, and is common to things like telephony servers, too.