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....

March 25, 2021 Â· 3 min Â· Penthaa Patel

How to implement a simple RPC service using Golang

This post was originally published on my Medium profile : How to implement a simple gRPC service using Golang If you want a general introduction to RPC you might want to check out my previous article in this series - A concise guide to gRPC for beginners The implemented code can be found on my GitHub Repository : Link to GitHub repository Before you begin Install Golang Install proto compilers Workflow Define protocol - Write ....

March 25, 2021 Â· 4 min Â· Penthaa Patel