1, 安装ruby-protobuf
gem install ruby_protobuf
2, 定义rpc service的rpc.proto文件
package demo;
message SearchRequest {
required string keyword = 1;
}
message SearchResponse {
required string result = 1;
}
service RpcService {
rpc Search (SearchRequest) returns (SearchResponse);
}
3, 编译
rprotoc rpc.proto
4, 完成service和client代码
rpc_service.rb
require 'protobuf/rpc/server'
require 'protobuf/rpc/handler'
require 'rpc.pb'
class Demo::SearchHandler < Protobuf::Rpc::Handler
request Demo::SearchRequest
response Demo::SearchResponse
def self.process_request(request, response)
if request.keyword == 'google'
response.result = 'www.google.com'
elsif request.keyword == 'freewheel'
response.result = 'www.freewheel.tv'
else
response.result = ''
end
end
end
class Demo::RpcService < Protobuf::Rpc::Server
def setup_handlers
@handlers = {
:search => Demo::SearchHandler,
}
end
end
client_search.rb
#!/usr/bin/env ruby
require 'protobuf/rpc/client'
require 'rpc.pb'
# build request
request1 = Demo::SearchRequest.new
request1.keyword = 'google'
request2 = Demo::SearchRequest.new
request2.keyword = 'freewheel'
# create blunk response
response1 = Demo::SearchResponse.new
response2 = Demo::SearchResponse.new
# execute rpc
Protobuf::Rpc::Client.new('localhost', 9999).call :search, request1, response1
Protobuf::Rpc::Client.new('localhost', 9999).call :search, request2, response2
p response1.result
p response2.result
5, 运行
启动Service
ruby start_rpc_service
// :port参数名改为:Port
调用Client
ruby client_search.rb
// result
"www.google.com"
"www.freewheel.tv"
分享到:
相关推荐
8. **gRPC**: Protobuf 还是 gRPC 的基础,gRPC 是一个高性能、开源和通用的 RPC 框架,它基于 HTTP/2 协议和 Protobuf 实现,支持多种语言。 9. **版本管理**:GitHub 上的 Google/protobuf 仓库提供了版本控制,...
gRPC是一个高性能、开源和通用的RPC(远程过程调用)框架,它基于HTTP/2协议设计,支持多种编程语言,包括Ruby。这个项目主要目的是探索在Ruby中使用gRPC的最佳实践,同时也可能包含一些特定于Ruby的优化或特性。 ...
- **protobuf-rpc-pro-demo-1.1.0及源码.zip** 包含了一个基于Protobuf实现的RPC框架的示例项目和源代码,版本为1.1.0,可以帮助开发者快速理解和应用Protobuf RPC。 Protobuf RPC的优势在于它具有高效的序列化...
- `examples`:示例代码,展示如何使用protobuf进行消息定义、序列化和反序列化。 - `build`:编译脚本和配置文件,帮助用户在不同平台上构建protobuf库和编译器。 - `LICENSE`:协议文件,说明protobuf的开源许可...
gRPC 是一个高性能、开源和通用的 RPC (远程过程调用) 框架,它基于 Google 的 Protocol Buffers(通常称为 Protobuf)进行序列化和接口定义。这个压缩包文件"grpc各语言使用官方示例代码.rar"包含了 gRPC 在不同...
首先,这篇文章主要讲述了如何在PHP环境中使用ProtoBuf数据格式,这是由Google公司主导开发的一款RPC框架,使用protobuf作为数据传输格式。随着gRPC框架的成熟和使用人群的增加,对于底层使用的数据格式protobuf也...
GRPC 是一个高性能、开源和通用的 RPC (远程过程调用) 框架,它基于 HTTP/2 协议标准设计,支持多种语言,包括 C++, Java, Python, Go, Node.js, C#, Ruby 等。GRPC 的核心是 Protobuf(Protocol Buffers),这是一...
1. **Thrift IDL**:Thrift IDL文件是用Thrift语法编写的,类似于Java的接口或者protobuf的.proto文件,它定义了服务接口、数据结构(structs)和枚举类型(enums)。在IDL文件中,你可以声明服务方法,定义数据类型...
它提供了强大的服务定义语言(gRPC Interface Definition Language, IDL),允许开发者定义服务接口和消息类型,支持多种编程语言,包括但不限于 C++, Java, Python, Go, Node.js, C#, Ruby 等。 标题 "grpc.github...
标题中提到的"Thrift服务开发框架 v0.16.0 [江西新余电信]"表明这是一个关于Thrift框架的特定版本,即v0.16.0,可能包含了该版本的源代码、文档、示例或者编译好的库文件。"江西新余电信"可能是发布者或者使用者的...