增加刷新、预热缓存任务管理

This commit is contained in:
刘祥超
2022-06-05 17:14:14 +08:00
parent 85553bf5d9
commit 0ea04c9883
11 changed files with 2874 additions and 354 deletions

View File

@@ -0,0 +1,15 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message HTTPCacheTaskKey {
int64 id = 1;
int64 taskId = 2;
string key = 3;
string type = 4;
string keyType = 5;
bool isDone = 6;
bytes errorsJSON = 7;
int64 nodeClusterId = 8;
}