
Zubair Ahmed Rafi
The Benefits of Using Connectrpc/web
RPC Let’s understand what is RPC. It stands for remote procedure call which is basically a protocol
What it means is you call a function or some operation that will run remotely from some where else , Simple.
That function req and res can use HTTP,TCP or UDP protocol under the hood.
Google uses binary format to transfer data and made a tool of their own gRPC
Connect rpc on the other hand also supports everything that gRPC supports but you have the choice to use JSON to transfer data as well can use HTTP/1 for CDN support and so on Basically Connect rpc brings all the benefits of rpc protocols while keeping the traditional way of data transfer open for more robust microservice adaption
appscode
connect-rpc
microservice
rpc