redis rpc服务, 提供redis操作方法
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.7 KiB

3 years ago
  1. syntax = "proto3";
  2. package redisrpc;
  3. // 使用key查询
  4. message GetRequest {
  5. string key = 1;
  6. }
  7. // 设置key
  8. message SetRequest {
  9. string key = 1;
  10. string value = 2;
  11. int64 ttl = 3;
  12. }
  13. message DelRequest {
  14. string key = 1;
  15. }
  16. // 使用hash key查询
  17. message HGetRequest {
  18. string key = 1;
  19. string field = 2;
  20. }
  21. // 设置hash key
  22. message HSetRequest {
  23. string key = 1;
  24. string field = 2;
  25. string value = 3;
  26. }
  27. // 删除hash key
  28. message HDelRequest {
  29. string key = 1;
  30. string field = 2;
  31. }
  32. //有效期
  33. message SetExpireRequest {
  34. string key = 1;
  35. int64 expire = 2;
  36. }
  37. // 使用key查询响应结构
  38. message GetStringResponse {
  39. string value = 1;
  40. }
  41. // 使用key查询响应结构
  42. message HGetListResponse {
  43. bytes list = 1;
  44. }
  45. // 设置key响应结构
  46. message SetResponse {
  47. string ret = 1;
  48. }
  49. // 删除key响应结构
  50. message DelResponse {
  51. int64 ret = 1;
  52. }
  53. // 设置key响应结构
  54. message HSetResponse {
  55. int64 ret = 1;
  56. }
  57. // 设置key有效期
  58. message SetExpireResponse {
  59. int64 ret = 1;
  60. }
  61. // rpc方法
  62. service RedisService {
  63. rpc Get (GetRequest) returns (GetStringResponse); // 使用key查询
  64. rpc Set (SetRequest) returns (SetResponse);
  65. rpc Del (DelRequest) returns (DelResponse);
  66. rpc HGet (HGetRequest) returns (GetStringResponse); // 使用hash key查询
  67. rpc HSet (HSetRequest) returns (HSetResponse);
  68. rpc HDel (HDelRequest) returns (DelResponse);
  69. rpc SetExpire (SetExpireRequest) returns (SetExpireResponse); //设置有效期
  70. rpc HGetAll(GetRequest) returns (HGetListResponse); //get hash all
  71. rpc HExists(HGetRequest) returns (DelResponse); //hash键是否存在
  72. rpc Exists(GetRequest) returns (DelResponse); //键是否存在
  73. }