© 2023 Hashnode
#grpc
Original article was published on my website: https://promisefemi.vercel.app/blog/grpc-client-connection-pooling Recently I was working on a daemon for consuming MQTT messages sent from thousands of …
Introduction Building efficient and reliable communication between applications is a crucial part of the modern world of software development. API or Application programming interface acts as an inter…
API development plays a crucial role in modern software engineering, enabling seamless communication and integration between different software systems and applications. With the growing complexity of…
What is Cosmos Hub? The Cosmos hub is a decentralized network of parallel and independent blockchains which is powered using a tender mint consensus engine. The cosmos hub provides a range of tools an…
APIs specify how different software components should interact and communicate programmatically and are the “glue” that allows separate system components to exchange data using an architectural model …
Today I've noticed a post on /r/webdev stating that GraphQL is trending down. Is this really the case, or are the numbers lying to us? Let's take a closer look at the data and see if this is really tr…
Our digital cognitive behavioral therapy app Awarefy has been developing and operating its backend system using Go + gRPC / Protocol Buffers since April 2022. Due to the ongoing web app development and the need to switch to connect-go, we h…
Welcome to the second part of our blog series on gRPC using Python. In our previous blog, we talked about the basics of gRPC, its architecture, and its various components. In this blog, we will be goi…
gRPC is an open-source high-performance Remote Procedure Call (RPC) framework that was developed by Google. It is designed to enable efficient communication between microservices and other distributed…
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…