gRPC 1.10.0-pre1 已发布,这是 gRPC Core 1.10.0 的预发行版,暂未发现更新内容。
[list][*]Include Boringssl fips_fragments files in headers for building
[*]Merge pull request #14515 from matt-kwong/fips-frags
[/list]提交记录中显示的这两项提交已被关闭。
下载地址
[list][*]grpc_objective_c_plugin-1.10.0-pre1-macos-x86_64.zip
[*]Source code (zip)
[*]Source code (tar.gz)
[/list]
gRPC 是一个高性能、开源、通用的 RPC 框架,面向移动和 HTTP/2 设计,是由谷歌发布的首款基于 Protocol Buffers 的 RPC 框架。目前提供 C、Java 和 Go 语言版本,分别是:grpc, grpc-java, grpc-go. 其中 C 版本支持 C, C++, Node.js, Python, Ruby, Objective-C, PHP 和 C#。
gRPC 基于 HTTP/2 标准设计,带来诸如双向流、流控、头部压缩、单 TCP 连接上的多复用请求等特性。这些特性使得其在移动设备上表现更好,更省电且节省空间占用。
服务接口定义示例:[code]message HelloRequest {
string greeting = 1;
}
message HelloResponse {
string reply = 1;
}
service HelloService {
rpc SayHello(HelloRequest) returns (HelloResponse);
}[/code]来自:开源中国社区