Top "Grpc" questions

A general RPC (Remote Procedure Call) framework over HTTP/2, initially developed at Google.

How to debug grpc call?

I'm trying to figure out why my grpc call isn't working, but I can't figure out how to turn on …

grpc
Is gRPC(HTTP/2) faster than REST with HTTP/2?

The goal is to introduce a transport and application layer protocol that is better in its latency and network throughput. …

rest http google-cloud-platform http2 grpc
protobuf vs gRPC

I try to understand protobuf and gRPC and how I can use both. Could you help me understand the following: …

networking protocol-buffers grpc
grpc and zeromq comparsion

I'd like to compare somehow capabilities of grpc vs. zeromq & its patterns: and I'd like to create some comparsion (…

zeromq messaging grpc
gRPC C++ on Windows

I have been trying for 3 days by now to find how to install and use gRPC on windows with no …

c++ windows visual-studio-2015 grpc
Pattern for rich error handling in gRPC

What is the pattern for sending more details about errors to the client using gRPC? For example, suppose I have …

grpc
How to import gRPC empty and Google api annotations proto

I am trying to use Google Cloud Endpoints to make a gRPC based api that can transcode incoming REST requests. …

google-cloud-platform protocol-buffers google-cloud-endpoints grpc protoc
How to use predifined protobuf type (i.e. "google/protobuf/timestamp.proto") with gRPC

I'm trying to use google/protobuf/timestamp.proto in with gRPC plugin and Go. This is how I run protoc: …

go protocol-buffers grpc
protoc not generating service stub files

I have just started playing with google proto. When I try to compile proto file present in proto-java example, it …

protocol-buffers grpc protoc
Create variable of type Map[string]interface{} in gRPC protoc buffer golang

I'm using grpc golang to communicate between client and server application. Below is the code for protoc buffer. syntax = "proto3"; …

go grpc protoc