gRPC Tutorials
Selected Reading
- gRPC - Discussion
- gRPC - Useful Resources
- gRPC - Quick Guide
- gRPC - Send/Receive Metadata
- gRPC - Timeouts & Cancellation
- gRPC - Client Calls
- gRPC - Bidirectional RPC
- gRPC - Client Streaming RPC
- gRPC - Server Streaming RPC
- gRPC - Unary
- gRPC - Helloworld App with Python
- gRPC - Helloworld App with Java
- gRPC - Setup
- gRPC - Introduction
- gRPC - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
gRPC - Discussion
Discuss gRPC
gRPC is a framework from Google. It provides an efficient and language-independent way to make Remote Procedure Calls. It supports remote procedure calls from languages pke Java, Python, Go, Dart, etc. It is heavily used for creating efficient remote procedure calls across industries by various companies.
The major use-case for gRPC is the making of remote procedure calls performant while ensuring language independence. Remote procedure calls play an important role in microservices/distributed environment where a lot of data is transferred across services. That is why, it becomes a very useful framework in developing apppcations that require high scalabipty and performance.
Advertisements