groupcache/groupcachepb/groupcache.proto

45 lines
1023 B
Protocol Buffer
Raw Normal View History

2013-07-24 00:18:04 +00:00
/*
Copyright 2012 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
2024-04-26 19:09:50 +00:00
syntax = "proto3";
2013-07-24 00:18:04 +00:00
package groupcachepb;
2024-04-16 16:05:12 +00:00
option go_package = "./";
2013-07-24 00:18:04 +00:00
message GetRequest {
2024-04-26 19:09:50 +00:00
string group = 1;
string key = 2; // not actually required/guaranteed to be UTF-8
2013-07-24 00:18:04 +00:00
}
message GetResponse {
2024-04-26 19:09:50 +00:00
bytes value = 1;
double minute_qps = 2;
int64 expire = 3;
2013-07-24 00:18:04 +00:00
}
message SetRequest {
2024-04-26 19:09:50 +00:00
string group = 1;
string key = 2;
bytes value = 3;
int64 expire = 4;
bool hotCache = 5;
}
2013-07-24 00:18:04 +00:00
service GroupCache {
rpc Get(GetRequest) returns (GetResponse) {
2024-04-26 19:09:50 +00:00
}
2013-07-24 00:18:04 +00:00
}