共计 657 个字符,预计需要花费 2 分钟才能阅读完成。
更不便的在微信公众号阅读文章能够关注公众号:海生的 go 花园
一、介绍
当初微服务,有次要的两种形式 rest api 以及 grpc。
相比 rest api,grpc 有更快的速度,更小的体积,能够显著的替身性能。
1、什么是 gRpc
grpc 是一个”近程调用过程“RPC 框架。rpc 是从近程调用一个微服务的函数。
grpc 是一种围绕 protobuf 协定,进行过程间通信的一种形式。通过 protobuf 来解决客户端和服务端的 音讯 message。
如下图:通过 protobuf,咱们生成客户端和服务端函数,以及 message。
一切都是建设在 protobuf 协定上的。
所以应用 grpc,咱们个别都是先定义 proto 文件,而后转成客户端以及服务端 go 代码。
这种架构,非常适合”客户端 - 服务器“应用程序。
2、如何用 protobuf 形容 grpc
一个 grpc 服务应用 service,以及 message 两个关键字形容。
service HelloService {rpc SayHello (HelloRequest) returns (HelloResponse);
}
message HelloRequest {string greeting = 1;}
message HelloResponse {string reply = 1;}
在这里咱们先定义一个 HelloService,提供一个 SayHello 办法,供其余的服务调用。
申请的 message 为 HelloRequest,供 client 申请参数应用。
返回 message 为 HelloResponse,server 返回给 client。
正文完