Tag
grpc
azureDeploying a .NET gRPC Server on Azure App Service
In this article we are going to be deploying a gRPC web service written in .NET to an Azure App Service. We will then interact with it and also…
distributed systemsBuilding a gRPC Client in .NET
In this article, we will take a look at how to create a simple gRPC client with .NET and communicate with a server. This is the final post of the blog…
distributed systemsBuilding a gRPC Client in Go
In this article, we will take a look at how to create a simple gRPC client with Go. We will be using this client to interact with the gRPC server that…
distributed systemsBuilding a gRPC Server in .NET
In this article, we will look at how to build a simple web service with gRPC in .NET. We will keep our changes to minimal and leverage the same…
distributed systemsBuilding a gRPC Server in Go
In this article, we will create a simple web service with gRPC in Go. We won’t use any third-party tools and only create a single endpoint to interact…
distributed systemsIntroduction to gRPC
What gRPC is, how Protocol Buffers and HTTP/2 fit together, and when it beats REST or WebSockets for service-to-service calls.