Category "grpc"

Can gRPC be used for audio-video streaming over Internet?

I understand in a client-server model gRPC can do a bidirectional streaming of data. I have not tried yet, but want to know will it be possible to stream audio

Are you required to call Recv until you get io.EOF when interacting with grpc.ClientStreams?

Suppose I define the following gRPC service: service Library { rpc Search(SearchBookRequest) returns (stream SearchBookResponse) {} } message SearchBookReq

keep grpc channel alive without activity

We have a system where clients open bi-directional grpc stream to ALB, which proxies to one of active server. So