Go实战--golang中使用gRPC和Protobuf实现高性能api(golang/protobuf、google.golang.org/grpc)

你的名字 2022-06-04 07:16 370阅读 0赞

生命不止,继续 go go go !!!

号外号外,插播一条广告,通过博客的uv可以看到周五,程序员是不怎么干活的:
这里写图片描述

本篇博客,使用gRPC和Protobuf,实现所谓的高性能api。

protobuf

golang中的protobuf大家应该不会很陌生,之前也有博客介绍过:
Go实战–go中使用google/protobuf(The way to go)

Protocol Buffers (a.k.a., protobuf) are Google’s language-neutral, platform-neutral, extensible mechanism for serializing structured data. You can find protobuf’s documentation on the Google Developers site.

获取:

发表评论

表情:
评论列表 (有 0 条评论,370人围观)

还没有评论,来说两句吧...

相关阅读

    相关 Go grpcprotobuf

    现在很多微服务内部的通信协议都采用rpc,性能高,安全。而grpc则是google退出的rpc plus。 protobuf是传输协议,性能高,强大。 来一个server