实现缓存策略若干功能

This commit is contained in:
GoEdgeLab
2020-10-04 16:10:19 +08:00
parent da9ef1e5e7
commit 50886bf57a
12 changed files with 1077 additions and 472 deletions

View File

@@ -32,8 +32,10 @@ service APINodeService {
message CreateAPINodeRequest {
string name = 1;
string description = 2;
string host = 3;
int32 port = 4;
bytes httpJSON = 3;
bytes httpsJSON = 4;
bytes accessAddrsJSON = 5;
bool isOn = 6;
}
message CreateAPINodeResponse {
@@ -45,8 +47,10 @@ message UpdateAPINodeRequest {
int64 nodeId = 1;
string name = 2;
string description = 3;
string host = 4;
int32 port = 5;
bytes httpJSON = 4;
bytes httpsJSON = 5;
bytes accessAddrsJSON = 6;
bool isOn = 7;
}
// 删除API节点