redis调整

This commit is contained in:
chengxl
2025-08-07 13:48:53 +08:00
parent 80a113116c
commit 1e89fa3c0e

View File

@@ -161,6 +161,14 @@ LUA;
{
try {
$redis = $this->connect();
//判断是否执行
$sStatus = $redis->hGet($key, 'status');
if (!empty($sStatus) && $sStatus == 'completed') {
return 2;
}
if (!empty($sStatus) && $sStatus == 'processing') {
return 3;
}
$redis->hMSet($key, [
'status' => 'processing',
'total' => $totalQuestions,
@@ -168,9 +176,9 @@ LUA;
'start_time' => time()
]);
$redis->expire($key, 10800); // 6小时过期
return true;
return 1;
} catch (\Exception $e) {
return false;
return 4;
}
}
// 多问题按条件拆分成两个队列新增日志记录