How to implement bi-directional streaming using gRPC with Python (Server) –...
So today we will demonstrate how to setup a bi-directional server using python & gRPC. The very first step to setup any gRPC streaming is to create a data contract in the form of a protocol buffer...
View ArticleHow to implement bi-directional streaming using gRPC with Python (Client) –...
Previously, we have demonstrated how to implement a bi-directional gRPC streaming server using python. Once the server implementation is ready we will implement the client. In order to implement the...
View ArticleIntroduction to QUIC & HTTP/3
QUIC is a new multiplexed transport built on top of UDP. The overall goal is to reduce latency and eliminate head-of-line blocking compared to that of TCP. The QUIC transport protocol has several...
View ArticleFuture of gRPC
One of the key advantages of gRPC is its speed and performance. By utilizing the HTTP/2 protocol and binary serialization and de-serialization, gRPC enables faster data transmission and reduced latency...
View ArticlePerformance optimization techniques for microservices
Performance optimization is crucial for microservices as it directly impacts user experience and overall system reliability. By carefully analyzing and fine-tuning various aspects of a microservice...
View Article