From 39c9bb78fa7e1e77df9bfb8d6d0f09cd3649c13e Mon Sep 17 00:00:00 2001 From: chengxl Date: Tue, 22 Jul 2025 15:04:50 +0800 Subject: [PATCH] =?UTF-8?q?Ai=E6=8E=A8=E8=8D=90=E6=96=87=E7=AB=A0=E9=A2=86?= =?UTF-8?q?=E5=9F=9F=E9=98=9F=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/common/QueueRedis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/common/QueueRedis.php b/application/common/QueueRedis.php index 052265b..eccbe69 100644 --- a/application/common/QueueRedis.php +++ b/application/common/QueueRedis.php @@ -185,7 +185,7 @@ LUA; $redis = $this->connect(); $redis->hSet($key, "chunk_{$chunkIndex}", $content); // 确保设置过期时间(如果已设置则忽略) - $redis->expire($key, 86400); + $redis->expire($key, 21600); return true; }