A concise guide to gRPC services for beginners
This post was originally published on my Medium profile : A concise guide to gRPC for beginners A series of simple, beginner friendly tutorials that explain the what, why and how of gRPC. Getting started - Understanding RPC What is RPC? RPC aka Remote Procedure Calls - are just like functions. These functions are executed on some remote system and hence the name. It follows a request - response model. A request is initiated from the client - this request is a function call with certain parameters and then, the server returns a response....