• go实现grpc-快速开始


    准备工作

    • Go, 最新版的

      如果不会安装看Getting Started.

    • Protocol buffer compilerprotocversion 3.

      想要安装, 请读Protocol Buffer Compiler Installation.

    •  为 protocol compiler安装Go plugins:

      1. 想要安装运行以下命令:

        1. $ go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28
        2. $ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.2
      2. 更新环境变量好让protocol 可以直接调用:

        $ export PATH="$PATH:$(go env GOPATH)/bin"

    记得保存.

    获取例子代码

    这些代码是 grpc-go 仓库的一部分.

    1. Download the repo as a zip file and unzip it,或者直接clone它:

      $ git clone -b v1.58.0 --depth 1 https://github.com/grpc/grpc-go
      
    2.  进入quick start example 目录:

      $ cd grpc-go/examples/helloworld

    运行范例

    从 examples/helloworld 目录:

    1.编译并执行服务端代码:

    $ go run greeter_server/main.go
    
    1. 再开一个终端编译并运行客户端代码

    2. output:

      1. $ go run greeter_client/main.go
      2. Greeting: Hello world

    恭喜! 你刚才成功地运行了client-server grpc应用

    更新刚才的gRPC服务

    接下来你将更新这个应用使用一个额外的服务方法。grpc服务使用protocol buffers.想要学习更多关于怎样在.proto文件中定义一个服务请看

     Basics tutorial. 现在,你只需要知道server端和客户端使用一个SayHello() RPC方法使得客户端获取到了服务端的方法返回的响应,方法定义像是:

    1. // The greeting service definition.
    2. service Greeter {
    3. // Sends a greeting
    4. rpc SayHello (HelloRequest) returns (HelloReply) {}
    5. }
    6. // The request message containing the user's name.
    7. message HelloRequest {
    8. string name = 1;
    9. }
    10. // The response message containing the greetings
    11. message HelloReply {
    12. string message = 1;
    13. }

    打开helloworld/helloworld.proto 然后 添加一个新的SayHelloAgain() 方法, 使用相同的请求和相应类型:

    1. // The greeting service definition.
    2. service Greeter {
    3. // Sends a greeting
    4. rpc SayHello (HelloRequest) returns (HelloReply) {}
    5. // Sends another greeting
    6. rpc SayHelloAgain (HelloRequest) returns (HelloReply) {}
    7. }
    8. // The request message containing the user's name.
    9. message HelloRequest {
    10. string name = 1;
    11. }
    12. // The response message containing the greetings
    13. message HelloReply {
    14. string message = 1;
    15. }

    记得保存!

    重新生成 gRPC 代码

    在你能用新的服务端方法前, 你得先重新生成 .proto file.

    因为仍旧处在 examples/helloworld 目录, 运行接下来的命令:

    1. $ protoc --go_out=. --go_opt=paths=source_relative \
    2. --go-grpc_out=. --go-grpc_opt=paths=source_relative \
    3. helloworld/helloworld.proto

    这将重新生成helloworld/helloworld.pb.go 和 helloworld/helloworld_grpc.pb.go files, 其中包含:

    • Code for populating, serializing, and retrieving HelloRequest and HelloReply message types.
    • Generated client and server code.

    更新并运行程序

    你已经生成了server和cilent代码,但你人就需要实现你手写的那些方法

    更新服务端

    打开 greeter_server/main.go 然后增加如下所示的函数:

    1. func (s *server) SayHelloAgain(ctx context.Context, in *pb.HelloRequest) (*pb.HelloReply, error) {
    2. return &pb.HelloReply{Message: "Hello again " + in.GetName()}, nil
    3. }

    更新客户端

    打开 greeter_client/main.go 并在 main()函数的最底部增加如下代码:

    1. r, err = c.SayHelloAgain(ctx, &pb.HelloRequest{Name: *name})
    2. if err != nil {
    3. log.Fatalf("could not greet: %v", err)
    4. }
    5. log.Printf("Greeting: %s", r.GetMessage())

    记得保存.

    运行!

    运行你之前写好的程序.在examples/helloworld directory下运行下面的命令:

    1. 运行 server:

      $ go run greeter_server/main.go
      
    2. 运行另一个终端,以下命令,这次我们增加了一个参数:

    3. $ go run greeter_client/main.go --name=Alice
      

      你会看到如下的输出:

      1. Greeting: Hello Alice
      2. Greeting: Hello again Alice

    接下来

  • 相关阅读:
    Java 基本数据类型
    《向量数据库指南》——向量数据库内核面临的技术挑战及应对措施
    IPO解读丨转向国内帐篷市场,泰鹏智能能否抓住露营经济的红利?
    Redis性能滑坡:哈希表碰撞的不速之客【redis第二部分】
    算法学习——“原地哈希法”
    现如今大数据的框架
    uniapp——第3篇:自定义组件、组件间传数据
    要在CentOS中安装Docker
    无法安装64位版本的office,因为在您的PC上找到以下32位程序
    没有Python基础,如何学习用Python写机器学习
  • 原文地址:https://blog.csdn.net/qq_42901723/article/details/132805929