🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now →
Menu

Categories

Web Development Advanced

What is gRPC?

A high-performance RPC framework using Protocol Buffers and HTTP/2 for efficient service-to-service communication.

gRPC (Google Remote Procedure Call) enables services to call methods on other services as if they were local functions. It uses Protocol Buffers for schema definition and binary serialization (smaller and faster than JSON), and HTTP/2 for multiplexed streaming.

gRPC supports unary calls, server/client streaming, and bidirectional streaming. It is ideal for microservices communication, mobile backends, and real-time applications. Language support includes Go, Java, Python, C++, and more.

Related Terms

CDN (Content Delivery Network)
A distributed network of servers that delivers web content to users from the geographically closest location.
SSR (Server-Side Rendering)
A technique where web pages are rendered on the server and sent as complete HTML to the browser, improving SEO and initial load time.
GraphQL
A query language for APIs that lets clients request exactly the data they need, reducing over-fetching and under-fetching.
Content Negotiation
An HTTP mechanism where client and server agree on the best representation of a resource based on format, language, or encoding preferences.
API (Application Programming Interface)
A set of rules and protocols that allows different software applications to communicate and exchange data.
JSON
JavaScript Object Notation — a lightweight data interchange format that is easy for humans to read and machines to parse.
View All Web Development Terms →