From 014486e5586c8238c786c3030d8dbec6f90f7e16 Mon Sep 17 00:00:00 2001 From: hotyue <52734432+hotyue@users.noreply.github.com> Date: Tue, 28 Apr 2026 04:30:05 +0000 Subject: [PATCH] =?UTF-8?q?perf(core):=20=E4=BC=98=E5=8C=96=20Google=20?= =?UTF-8?q?=E6=A8=A1=E5=9D=97=E8=A1=8C=E4=B8=BA=E6=8B=89=E4=BC=B8=E7=AD=96?= =?UTF-8?q?=E7=95=A5=EF=BC=8C=E5=8D=95=E6=AD=A5=E4=BC=91=E7=9C=A0=E4=B8=8A?= =?UTF-8?q?=E9=99=90=E7=BC=A9=E7=9F=AD=E8=87=B3=20120s=EF=BC=8C=E6=8F=90?= =?UTF-8?q?=E5=8D=87=E5=B7=A1=E9=80=BB=E6=89=A7=E8=A1=8C=E6=95=88=E7=8E=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/mod_google.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/mod_google.sh b/core/mod_google.sh index e633826..147dffa 100755 --- a/core/mod_google.sh +++ b/core/mod_google.sh @@ -162,10 +162,10 @@ for ((i=1; i<=TOTAL_ACTIONS; i++)); do log "$MODULE_NAME" "EXEC " "动作[$i/$TOTAL_ACTIONS]完成 | HTTP状态: $CODE | 抖动坐标: $ACTION_LAT, $ACTION_LON" - # 【核心升级】行为拉伸:每次动作后强制休眠 90 - 150 秒 - # 结合动作总数,总耗时将稳定在 10 分钟 到 25 分钟之间 + # 【核心升级】行为拉伸:每次动作后强制休眠 90 - 120 秒 + # 结合动作总数,总耗时将稳定在 10 分钟 到 20 分钟之间 if [ $i -lt $TOTAL_ACTIONS ]; then - SLEEP_TIME=$((90 + RANDOM % 61)) + SLEEP_TIME=$((90 + RANDOM % 31)) log "$MODULE_NAME" "WAIT " "阅读当前页面内容,模拟停留 $SLEEP_TIME 秒..." sleep $SLEEP_TIME fi