Change version to 1.10.2-dev
1 file changed
tree: d62f044636cff31606a07a784a860b9226b858ee
  1. .github/
  2. balancer/
  3. benchmark/
  4. codes/
  5. connectivity/
  6. credentials/
  7. Documentation/
  8. encoding/
  9. examples/
  10. grpclb/
  11. grpclog/
  12. health/
  13. internal/
  14. interop/
  15. keepalive/
  16. metadata/
  17. naming/
  18. peer/
  19. reflection/
  20. resolver/
  21. stats/
  22. status/
  23. stress/
  24. tap/
  25. test/
  26. testdata/
  27. transport/
  28. .travis.yml
  29. AUTHORS
  30. backoff.go
  31. backoff_test.go
  32. balancer.go
  33. balancer_conn_wrappers.go
  34. balancer_switching_test.go
  35. balancer_test.go
  36. balancer_v1_wrapper.go
  37. call.go
  38. call_test.go
  39. clientconn.go
  40. clientconn_test.go
  41. codec.go
  42. codec_test.go
  43. codegen.sh
  44. CONTRIBUTING.md
  45. doc.go
  46. go16.go
  47. go17.go
  48. grpclb.go
  49. grpclb_picker.go
  50. grpclb_remote_balancer.go
  51. grpclb_util.go
  52. interceptor.go
  53. LICENSE
  54. Makefile
  55. picker_wrapper.go
  56. picker_wrapper_test.go
  57. pickfirst.go
  58. pickfirst_test.go
  59. proxy.go
  60. proxy_test.go
  61. README.md
  62. resolver_conn_wrapper.go
  63. resolver_conn_wrapper_test.go
  64. rpc_util.go
  65. rpc_util_test.go
  66. server.go
  67. server_test.go
  68. service_config.go
  69. service_config_test.go
  70. stream.go
  71. trace.go
  72. vet.sh
README.md

gRPC-Go

Build Status GoDoc GoReportCard

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. Go 1.7 will be required as of the next gRPC-Go release (1.8).

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