Creating a very basic gRPC server
dev.to·21h·
Discuss: DEV
Flag this post

Hi everyone, I started out learning gRPC and created a very basic gRPC server. Although it doesn’t do much, it still has a lot of technical stuff going on. So here is a simple breakdown of my attempt at making a gRPC server. I will try to explain everything in simple words and make everything crystal clear.

First of all, let’s address the question “What the hell is gRPC ???” In simple words gRPC is a opensource framework for remote procedure calls (RPC) developed by google. It allows a client to call a function on a server as if it is a local function making it ideal for distributed systems and microservices. It uses protocol buffers which can be serialized into smaller binary format, making it much more efficient and faster than JSON format.It also used HTTP/2 as the tra…

Similar Posts

Loading similar posts...