|
|
- syntax = "proto3";
- package redisrpc;
-
- // 使用key查询
- message GetKey {
- string key = 1;
- }
- // 使用hash key查询
- message GetHashKey {
- string key = 1;
- string field = 2;
- }
-
- // 使用key查询响应结构
- message GetResponse {
- string string = 1;
- }
-
-
- // rpc方法
- service RedisService {
- rpc getByKey (GetKey) returns (GetResponse); // 使用key查询
- rpc getByHashKey (GetHashKey) returns (GetResponse); // 使用hash key查询
- }
|