route/vendor/google.golang.org/grpc
Cadey Ratio 50c1deaa7d
change from vendor to dep
2017-10-06 08:29:20 -07:00
..
.github change from vendor to dep 2017-10-06 08:29:20 -07:00
Documentation change from vendor to dep 2017-10-06 08:29:20 -07:00
benchmark change from vendor to dep 2017-10-06 08:29:20 -07:00
codes vendor: update grpc 2017-09-30 09:47:47 -07:00
connectivity vendor: update grpc 2017-09-30 09:47:47 -07:00
credentials change from vendor to dep 2017-10-06 08:29:20 -07:00
examples change from vendor to dep 2017-10-06 08:29:20 -07:00
grpclb change from vendor to dep 2017-10-06 08:29:20 -07:00
grpclog change from vendor to dep 2017-10-06 08:29:20 -07:00
health change from vendor to dep 2017-10-06 08:29:20 -07:00
internal vendor: update grpc 2017-09-30 09:47:47 -07:00
interop change from vendor to dep 2017-10-06 08:29:20 -07:00
keepalive vendor: update grpc 2017-09-30 09:47:47 -07:00
metadata change from vendor to dep 2017-10-06 08:29:20 -07:00
naming change from vendor to dep 2017-10-06 08:29:20 -07:00
peer vendor: update grpc 2017-09-30 09:47:47 -07:00
reflection change from vendor to dep 2017-10-06 08:29:20 -07:00
stats change from vendor to dep 2017-10-06 08:29:20 -07:00
status change from vendor to dep 2017-10-06 08:29:20 -07:00
stress change from vendor to dep 2017-10-06 08:29:20 -07:00
tap vendor: update grpc 2017-09-30 09:47:47 -07:00
test change from vendor to dep 2017-10-06 08:29:20 -07:00
testdata change from vendor to dep 2017-10-06 08:29:20 -07:00
transport change from vendor to dep 2017-10-06 08:29:20 -07:00
.please-update change from vendor to dep 2017-10-06 08:29:20 -07:00
.travis.yml change from vendor to dep 2017-10-06 08:29:20 -07:00
AUTHORS change from vendor to dep 2017-10-06 08:29:20 -07:00
CONTRIBUTING.md change from vendor to dep 2017-10-06 08:29:20 -07:00
LICENSE change from vendor to dep 2017-10-06 08:29:20 -07:00
Makefile change from vendor to dep 2017-10-06 08:29:20 -07:00
README.md change from vendor to dep 2017-10-06 08:29:20 -07:00
backoff.go vendor: update grpc 2017-09-30 09:47:47 -07:00
backoff_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
balancer.go vendor: update grpc 2017-09-30 09:47:47 -07:00
balancer_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
call.go change from vendor to dep 2017-10-06 08:29:20 -07:00
call_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
clientconn.go change from vendor to dep 2017-10-06 08:29:20 -07:00
clientconn_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
codec.go vendor: update grpc 2017-09-30 09:47:47 -07:00
codec_benchmark_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
codec_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
codegen.sh change from vendor to dep 2017-10-06 08:29:20 -07:00
doc.go vendor: update grpc 2017-09-30 09:47:47 -07:00
go16.go vendor: update grpc 2017-09-30 09:47:47 -07:00
go17.go change from vendor to dep 2017-10-06 08:29:20 -07:00
grpclb.go change from vendor to dep 2017-10-06 08:29:20 -07:00
interceptor.go vendor: update grpc 2017-09-30 09:47:47 -07:00
proxy.go vendor: update grpc 2017-09-30 09:47:47 -07:00
proxy_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
rpc_util.go change from vendor to dep 2017-10-06 08:29:20 -07:00
rpc_util_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
server.go change from vendor to dep 2017-10-06 08:29:20 -07:00
server_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
stream.go change from vendor to dep 2017-10-06 08:29:20 -07:00
trace.go change from vendor to dep 2017-10-06 08:29:20 -07:00
vet.sh change from vendor to dep 2017-10-06 08:29:20 -07:00

README.md

gRPC-Go

Build Status GoDoc

The Go implementation of gRPC: A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. For more information see the gRPC Quick Start: Go guide.

Installation

To install this package, you need to install Go and setup your Go workspace on your computer. The simplest way to install the library is to run:

$ go get -u google.golang.org/grpc

Prerequisites

This requires Go 1.6 or later.

Constraints

The grpc package should only depend on standard Go packages and a small number of exceptions. If your contribution introduces new dependencies which are NOT in the list, you need a discussion with gRPC-Go authors and consultants.

Documentation

See API documentation for package and API descriptions and find examples in the examples directory.

Performance

See the current benchmarks for some of the languages supported in this dashboard.

Status

General Availability Google Cloud Platform Launch Stages.

FAQ

Compiling error, undefined: grpc.SupportPackageIsVersion

Please update proto package, gRPC package and rebuild the proto files:

  • go get -u github.com/golang/protobuf/{proto,protoc-gen-go}
  • go get -u google.golang.org/grpc
  • protoc --go_out=plugins=grpc:. *.proto