1 repo
Standard request-response remote procedure call patterns.
Distinguishing note: Focuses on simple single-request/single-response patterns.
Explore 1 awesome GitHub repository matching software engineering & architecture · Unary RPC Execution. Refine with filters or upvote what's useful.
gRPC is a language-agnostic remote procedure call framework designed for high-performance communication between distributed services. It utilizes a structured interface definition language to generate consistent client stubs and server skeletons, enabling applications to invoke methods on remote servers as if they were local objects. By leveraging the HTTP/2 transport layer, the framework supports efficient binary serialization and multiplexed data exchange across diverse programming environments. The framework distinguishes itself through its support for flexible communication patterns, incl
Performs standard remote calls where a client sends a single request and receives a single response.