| Up to higher level directory | |||
| Name | Date | Size | |
|---|---|---|---|
| .travis.yml | 22-Oct-2020 | 686 | |
| AUTHORS | 22-Oct-2020 | 12 | |
| backoff.go | 22-Oct-2020 | 1.1K | |
| balancer/ | 22-Oct-2020 | ||
| balancer.go | 22-Oct-2020 | 11.5K | |
| balancer_conn_wrappers.go | 22-Oct-2020 | 7.2K | |
| balancer_v1_wrapper.go | 22-Oct-2020 | 8.5K | |
| call.go | 22-Oct-2020 | 3K | |
| clientconn.go | 22-Oct-2020 | 47.7K | |
| codec.go | 22-Oct-2020 | 1.6K | |
| codegen.sh | 22-Oct-2020 | 635 | |
| codes/ | 22-Oct-2020 | ||
| connectivity/ | 22-Oct-2020 | ||
| CONTRIBUTING.md | 22-Oct-2020 | 2.4K | |
| credentials/ | 22-Oct-2020 | ||
| doc.go | 22-Oct-2020 | 720 | |
| encoding/ | 22-Oct-2020 | ||
| envconfig.go | 22-Oct-2020 | 889 | |
| go16.go | 22-Oct-2020 | 1.9K | |
| go17.go | 22-Oct-2020 | 1.9K | |
| grpclog/ | 22-Oct-2020 | ||
| install_gae.sh | 22-Oct-2020 | 236 | |
| interceptor.go | 22-Oct-2020 | 4K | |
| internal/ | 22-Oct-2020 | ||
| keepalive/ | 22-Oct-2020 | ||
| LICENSE | 22-Oct-2020 | 11.1K | |
| Makefile | 22-Oct-2020 | 988 | |
| metadata/ | 22-Oct-2020 | ||
| naming/ | 22-Oct-2020 | ||
| peer/ | 22-Oct-2020 | ||
| picker_wrapper.go | 22-Oct-2020 | 8.3K | |
| pickfirst.go | 22-Oct-2020 | 2.8K | |
| proxy.go | 22-Oct-2020 | 3.4K | |
| README.md | 22-Oct-2020 | 2K | |
| resolver/ | 22-Oct-2020 | ||
| resolver_conn_wrapper.go | 22-Oct-2020 | 4K | |
| rpc_util.go | 22-Oct-2020 | 21.9K | |
| server.go | 22-Oct-2020 | 42.3K | |
| service_config.go | 22-Oct-2020 | 6.7K | |
| stats/ | 22-Oct-2020 | ||
| status/ | 22-Oct-2020 | ||
| stickiness_linkedmap.go | 22-Oct-2020 | 2.3K | |
| stream.go | 22-Oct-2020 | 22.4K | |
| tap/ | 22-Oct-2020 | ||
| trace.go | 22-Oct-2020 | 2.7K | |
| transport/ | 22-Oct-2020 | ||
| version.go | 22-Oct-2020 | 687 | |
| vet.sh | 22-Oct-2020 | 3.3K | |
1 # gRPC-Go 2 3 [](https://travis-ci.org/grpc/grpc-go) [](https://godoc.org/google.golang.org/grpc) [](https://goreportcard.com/report/github.com/grpc/grpc-go) 4 5 The Go implementation of [gRPC](https://grpc.io/): A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. For more information see the [gRPC Quick Start: Go](https://grpc.io/docs/quickstart/go.html) guide. 6 7 Installation 8 ------------ 9 10 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: 11 12 ``` 13 $ go get -u google.golang.org/grpc 14 ``` 15 16 Prerequisites 17 ------------- 18 19 This requires Go 1.6 or later. Go 1.7 will be required soon. 20 21 Constraints 22 ----------- 23 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](http://godoc.org/google.golang.org/grpc?imports), you need a discussion with gRPC-Go authors and consultants. 24 25 Documentation 26 ------------- 27 See [API documentation](https://godoc.org/google.golang.org/grpc) for package and API descriptions and find examples in the [examples directory](examples/). 28 29 Performance 30 ----------- 31 See the current benchmarks for some of the languages supported in [this dashboard](https://performance-dot-grpc-testing.appspot.com/explore?dashboard=5652536396611584&widget=490377658&container=1286539696). 32 33 Status 34 ------ 35 General Availability [Google Cloud Platform Launch Stages](https://cloud.google.com/terms/launch-stages). 36 37 FAQ 38 --- 39 40 #### Compiling error, undefined: grpc.SupportPackageIsVersion 41 42 Please update proto package, gRPC package and rebuild the proto files: 43 - `go get -u github.com/golang/protobuf/{proto,protoc-gen-go}` 44 - `go get -u google.golang.org/grpc` 45 - `protoc --go_out=plugins=grpc:. *.proto` 46