From 3508a9c6d757fe9f124315b1a878b800942739da Mon Sep 17 00:00:00 2001 From: testadmin Date: Mon, 20 Apr 2026 12:30:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20Swoole=20=E5=8A=A0=20max=5Frequest=20?= =?UTF-8?q?=E9=98=B2=E5=86=85=E5=AD=98=E6=B3=84=E6=BC=8F=E5=AF=BC=E8=87=B4?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - worker/task 每处理 10000 请求自动重生,释放内存 - 解决长时间运行后龙虎等游戏偶发状态异常的问题 --- config/swoole.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/swoole.php b/config/swoole.php index 498cb86..acc7fb3 100644 --- a/config/swoole.php +++ b/config/swoole.php @@ -17,6 +17,8 @@ return [ 'reactor_num' => swoole_cpu_num(), 'worker_num' => swoole_cpu_num(), 'task_worker_num' => swoole_cpu_num(), + 'max_request' => 10000, + 'max_task_request' => 10000, 'enable_static_handler' => true, 'document_root' => root_path('public'), 'package_max_length' => 20 * 1024 * 1024,