© 2023 Hashnode
#grpc
gRPC is a way for different software programs to talk to each other over the internet.gRPC is a technology for implementing RPC APIs that uses HTTP 2.0 as its underlying transport protocol. You might …
Sometimes, when writing microservices, we often come across a dilema: Whether to use gRPC and message queues. I, literaly, have been biting the bullet making a decision about which tech to use. After …
As we progress with application development, among various things, there is one primary thing we are less worried about i.e. computing power. With the advent of cloud providers, we are less worried ab…
Click here to read the previous series. The Cosmos ecosystem is a collection of tools and technologies that are designed to enable the creation of decentralized applications (DApps) and distributed le…
gRPC is an open-source, high-performance Remote Procedure Call (RPC) framework that can run in any environment. It uses HTTP/2 as the underlying transport protocol, which allows for efficient and mult…
Code The code for this article is available at: https://github.com/theundeadmonk/python-grpc-demo/ This is part of a series of gRPC in python. We will cover the following [Implementing a server](http…
Code The code for this article is available at: https://github.com/theundeadmonk/python-grpc-demo/ This is part of a series of gRPC in python. We will cover the following 1) Implementing a server 2) I…
Before we get into gRPC, let's first understand what RPC is. RPC stands for Remote Procedure Call. It is a form of communication in which systems use function calls to communicate over a network. It i…
TL;DR Le Code https://github.com/dirien/rust-grpc Introduction In today's Rust 🦀 tutorial, we will be discovering the world of gRPC. For this, we will create a very simple microservice with a singl…
Back in 2019, when I work as individual postgresql/nginx consultant. Many clients ask me if they could do hybrid programming in nginx. They said, nginx/openresty is powerful and high performance, but …