Takahiro Ikeuchiawarefy.hashnode.net·Apr 21, 2023FeaturedBetter gRPC with Connect: A Go Application MigrationOur 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 have migrat...15 likes·272 readsGo Language
Engin Diriediri.hashnode.net·Dec 3, 2022Creating a Microservice in Rust Using gRPCTL;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 single endpoint which will echo back the message we sen...10 likes·2.3K readsLearning RustRust
Oyamo Brianoyamo.hashnode.net·Jan 18, 2023gRPC vs Message Queues UsecasesSometimes, 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 a some research I compiled some 2 cents on this. g...10 likesgRPC
Stefanstefanatwundergraph.hashnode.net·Apr 23, 2023Is GraphQL dying? 2023 Trend Analysis of REST, GraphQL, OpenAPI, SOAP, gRPC and tRPCToday 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 true. First, let's have another look at the original...GraphQL
Takahiro Ikeuchiawarefy.hashnode.net·Apr 21, 2023FeaturedBetter gRPC with Connect: A Go Application MigrationOur 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 have migrat...15 likes·272 readsGo Language
Arijit Royradioactive11.hashnode.net·Apr 11, 2023Getting Started with gRPC in Python: A Practical ApproachWelcome 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 going through how to write a gRPC client & server so ...gRPC
Gitik Guptagitikgupta.hashnode.net·Apr 10, 2023What is GRPC ?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 systems, and it uses Protocol Buffers as its defa...LearninggRPC
Aditya Mattostheundeadmonk.hashnode.net·Apr 5, 2023gRPC in Python. Part 4: InterceptorsCode 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](https://adityamattos.com/grpc-in-python-part-1-buildin...43 readsgRPC
Amit kumartechthoughtsexplorer.hashnode.net·Mar 30, 2023GraphQL vs. REST vs. gRPC: A Comprehensive Comparison for API DesignIn today's digital age, APIs play a critical role in connecting software applications and facilitating seamless communication. Choosing the right API design paradigm is essential for developers to build efficient, reliable, and scalable APIs. This bl...All Things MicroservicesAPIs
Jernej Gorickiilovetodeletecode.hashnode.net·Mar 18, 2023Protocol Buffer Message Reflection API in C#TL;DR This blog post shows how to replace .NET reflection with the functionality available on the IMessage interface, when dealing with C# objects generated using Protobuf's protoc compiler. IMessage.Descriptor is the way to access Protobuf Reflectio...62 readsC#
Arijit Royradioactive11.hashnode.net·Mar 14, 2023A Beginner's Guide to gRPC: Faster, Smarter APIsgRPC is a high-performance, open-source universal RPC (Remote Procedure Call) framework. It is developed by Google and provides efficient, low-latency communication between microservices. gRPC uses Protocol Buffers as the default data serialization f...7 likes·29 readsgRPC
Vaishnav Mkwishee.hashnode.net·Mar 14, 2023Revolutionizing Scalability: How Microservices and gRPC are Changing the GameHello everyone, As someone whose GitHub status usually revolves around "figuring out mega-scaled applications," I wanted to share some of my findings on how microservices and gRPC are revolutionizing scalability in modern software development. Unders...26 readsWeMakeDevs
Jose Gabrielle Riverajgrivera.hashnode.net·Mar 14, 2023Compile all Proto files to Go code using a MakefileForeword I have been recently learning about using gRPC in Go. I have been liking it so far! The notion of using protocol buffers and HTTP 2.0 is exciting to me. I find it cool to make remote calls on another service as if they were locally called in...141 readsgRPC