From 43ad1ff67e4527ff4e79b82faaa1c35934ed0958 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=A5=A5=E8=B6=85?= Date: Mon, 24 Oct 2022 18:33:51 +0800 Subject: [PATCH] =?UTF-8?q?proto=E6=96=87=E4=BB=B6=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/rpc/protos/service_http_cache_task.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/rpc/protos/service_http_cache_task.proto b/pkg/rpc/protos/service_http_cache_task.proto index 42b31c5..26d6502 100644 --- a/pkg/rpc/protos/service_http_cache_task.proto +++ b/pkg/rpc/protos/service_http_cache_task.proto @@ -32,9 +32,9 @@ service HTTPCacheTaskService { // 创建任务 message CreateHTTPCacheTaskRequest { - string type = 1; - string keyType = 2; - repeated string keys = 3; + string type = 1; // 类型:清理:purge,预热:fetch + string keyType = 2; // Key类型:单个URL:key,目录:prefix;预热的时候只能为 key + repeated string keys = 3; // 要清理的Key } message CreateHTTPCacheTaskResponse {