diff --git a/frameworks/mark/Dockerfile b/frameworks/mark/Dockerfile index dd1ad6ebd..80f305bea 100644 --- a/frameworks/mark/Dockerfile +++ b/frameworks/mark/Dockerfile @@ -11,7 +11,8 @@ RUN apt-get install -yqq php8.5-cli php8.5-xml php8.5-zip php8.5-pgsql >/dev/nul COPY --from=composer/composer:latest-bin --link /composer /usr/local/bin/composer RUN apt-get install -y php-pear php8.5-dev libevent-dev git >/dev/null && \ - pecl install event-3.1.4 > /dev/null && echo "extension=event.so" > /etc/php/8.5/cli/conf.d/30-event.ini + pecl install event-3.1.4 >/dev/null && echo "extension=event.so" > /etc/php/8.5/cli/conf.d/30-event.ini && \ + pecl install brotli >/dev/null && echo "extension=brotli.so" > /etc/php/8.5/cli/conf.d/30-brotli.ini WORKDIR /mark COPY composer.json . diff --git a/frameworks/mark/handlers.php b/frameworks/mark/handlers.php index a8ff4392b..9eda369a6 100644 --- a/frameworks/mark/handlers.php +++ b/frameworks/mark/handlers.php @@ -36,10 +36,22 @@ function json($request, $count) $total[] = $item; } + $result = json_encode(['items' => $total, 'count' => $count], JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES); + $header = []; + if($encoding = $request->header('accept-encoding', '')) { + if(str_contains($encoding, 'br')) { + $result = brotli_compress($result, 1); + $header = ['Content-Encoding' => 'br']; + } elseif (str_contains($encoding, 'gzip')) { + $result = gzencode($result, 1); + $header = ['Content-Encoding' => 'gzip']; + } + } + return new Response ( 200, - ['Content-Type' => 'application/json'], - json_encode(['items' => $total, 'count' => $count], JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES) + ['Content-Type' => 'application/json'] + $header, + $result ); } diff --git a/frameworks/mark/meta.json b/frameworks/mark/meta.json index 89c934c58..f7b1cc79c 100644 --- a/frameworks/mark/meta.json +++ b/frameworks/mark/meta.json @@ -12,6 +12,7 @@ "pipelined", "limited-conn", "json", + "json-comp", "static", "api-4", "api-16", diff --git a/site/data/results/mark.json b/site/data/results/mark.json index ec2335419..67912ebd0 100644 --- a/site/data/results/mark.json +++ b/site/data/results/mark.json @@ -4,68 +4,71 @@ "api-16-1024": { "framework": "mark", "language": "PHP", - "rps": 123578, - "avg_latency": "6.42ms", - "p99_latency": "93.70ms", - "cpu": "1079.5%", - "memory": "60MiB", + "rps": 130964, + "avg_latency": "5.85ms", + "p99_latency": "99.20ms", + "cpu": "1138.4%", + "memory": "64MiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "619.88MB/s", - "reconnects": 370547, - "status_2xx": 1853680, + "bandwidth": "656.74MB/s", + "input_bw": "7.37MB/s", + "reconnects": 392691, + "status_2xx": 1964460, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 694931, - "tpl_json": 695824, + "tpl_baseline": 736841, + "tpl_json": 737181, "tpl_db": 0, "tpl_upload": 0, "tpl_static": 0, - "tpl_async_db": 462920 + "tpl_async_db": 490438 }, "api-4-256": { "framework": "mark", "language": "PHP", - "rps": 39633, - "avg_latency": "4.84ms", - "p99_latency": "75.50ms", - "cpu": "259.7%", - "memory": "37MiB", + "rps": 35047, + "avg_latency": "5.91ms", + "p99_latency": "104.70ms", + "cpu": "281.9%", + "memory": "39MiB", "connections": 256, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "198.72MB/s", - "reconnects": 118856, - "status_2xx": 594506, + "bandwidth": "175.75MB/s", + "input_bw": "1.97MB/s", + "reconnects": 105099, + "status_2xx": 525715, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 223025, - "tpl_json": 223009, + "tpl_baseline": 197163, + "tpl_json": 197240, "tpl_db": 0, "tpl_upload": 0, "tpl_static": 0, - "tpl_async_db": 148471 + "tpl_async_db": 131310 }, "async-db-1024": { "framework": "mark", "language": "PHP", - "rps": 205266, - "avg_latency": "4.46ms", - "p99_latency": "20.90ms", - "cpu": "2876.5%", - "memory": "136MiB", + "rps": 187687, + "avg_latency": "4.95ms", + "p99_latency": "24.00ms", + "cpu": "2956.1%", + "memory": "138MiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "780.89MB/s", - "reconnects": 81868, - "status_2xx": 2052666, + "bandwidth": "713.83MB/s", + "input_bw": "12.53MB/s", + "reconnects": 75099, + "status_2xx": 1876876, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -73,18 +76,19 @@ "baseline-4096": { "framework": "mark", "language": "PHP", - "rps": 2563845, - "avg_latency": "1.60ms", - "p99_latency": "3.15ms", - "cpu": "6697.1%", - "memory": "152MiB", + "rps": 2887122, + "avg_latency": "1.42ms", + "p99_latency": "2.78ms", + "cpu": "6687.5%", + "memory": "157MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "217.56MB/s", + "bandwidth": "247.74MB/s", + "input_bw": "223.02MB/s", "reconnects": 0, - "status_2xx": 12819229, + "status_2xx": 14435612, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -92,18 +96,19 @@ "baseline-512": { "framework": "mark", "language": "PHP", - "rps": 2559485, - "avg_latency": "199us", - "p99_latency": "570us", - "cpu": "6564.2%", - "memory": "151MiB", + "rps": 2802794, + "avg_latency": "182us", + "p99_latency": "493us", + "cpu": "6748.2%", + "memory": "152MiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "217.19MB/s", + "bandwidth": "240.51MB/s", + "input_bw": "216.51MB/s", "reconnects": 0, - "status_2xx": 12797426, + "status_2xx": 14013974, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -111,18 +116,79 @@ "json-4096": { "framework": "mark", "language": "PHP", - "rps": 997772, - "avg_latency": "3.75ms", - "p99_latency": "102.50ms", - "cpu": "6294.8%", - "memory": "139MiB", + "rps": 1059267, + "avg_latency": "3.49ms", + "p99_latency": "100.00ms", + "cpu": "6653.5%", + "memory": "144MiB", + "connections": 4096, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "3.57GB/s", + "input_bw": "50.51MB/s", + "reconnects": 211666, + "status_2xx": 5296336, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, + "json-comp-16384": { + "framework": "mark", + "language": "PHP", + "rps": 577858, + "avg_latency": "26.43ms", + "p99_latency": "684.00ms", + "cpu": "6207.5%", + "memory": "178MiB", + "connections": 16384, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "895.07MB/s", + "input_bw": "42.98MB/s", + "reconnects": 114824, + "status_2xx": 2889292, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, + "json-comp-4096": { + "framework": "mark", + "language": "PHP", + "rps": 578639, + "avg_latency": "6.98ms", + "p99_latency": "181.70ms", + "cpu": "6360.6%", + "memory": "149MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "3.36GB/s", - "reconnects": 198687, - "status_2xx": 4988861, + "bandwidth": "896.27MB/s", + "input_bw": "43.04MB/s", + "reconnects": 115388, + "status_2xx": 2893198, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, + "json-comp-512": { + "framework": "mark", + "language": "PHP", + "rps": 549662, + "avg_latency": "925us", + "p99_latency": "3.64ms", + "cpu": "5976.4%", + "memory": "135MiB", + "connections": 512, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "851.44MB/s", + "input_bw": "40.89MB/s", + "reconnects": 109936, + "status_2xx": 2748314, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -130,18 +196,19 @@ "limited-conn-4096": { "framework": "mark", "language": "PHP", - "rps": 2016692, - "avg_latency": "2.01ms", - "p99_latency": "31.30ms", - "cpu": "6280.6%", - "memory": "133MiB", + "rps": 2194435, + "avg_latency": "1.85ms", + "p99_latency": "28.10ms", + "cpu": "6328.9%", + "memory": "136MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "171.11MB/s", - "reconnects": 1010087, - "status_2xx": 10083463, + "bandwidth": "188.29MB/s", + "input_bw": "169.51MB/s", + "reconnects": 1097910, + "status_2xx": 10972178, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -149,18 +216,19 @@ "limited-conn-512": { "framework": "mark", "language": "PHP", - "rps": 1825079, - "avg_latency": "268us", - "p99_latency": "2.08ms", - "cpu": "6092.5%", - "memory": "124MiB", + "rps": 2000001, + "avg_latency": "243us", + "p99_latency": "1.34ms", + "cpu": "5879.2%", + "memory": "127MiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "154.86MB/s", - "reconnects": 912540, - "status_2xx": 9125397, + "bandwidth": "171.62MB/s", + "input_bw": "154.50MB/s", + "reconnects": 1000013, + "status_2xx": 10000008, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -168,18 +236,18 @@ "pipelined-4096": { "framework": "mark", "language": "PHP", - "rps": 3197540, - "avg_latency": "20.46ms", - "p99_latency": "26.00ms", - "cpu": "6396.3%", - "memory": "152MiB", + "rps": 3688724, + "avg_latency": "17.79ms", + "p99_latency": "24.40ms", + "cpu": "6441.5%", + "memory": "156MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "274.35MB/s", + "bandwidth": "316.51MB/s", "reconnects": 0, - "status_2xx": 15987702, + "status_2xx": 18443624, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -187,18 +255,18 @@ "pipelined-512": { "framework": "mark", "language": "PHP", - "rps": 3130339, - "avg_latency": "2.62ms", - "p99_latency": "4.26ms", - "cpu": "6422.2%", - "memory": "116MiB", + "rps": 3680607, + "avg_latency": "2.22ms", + "p99_latency": "3.70ms", + "cpu": "6609.0%", + "memory": "120MiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "268.61MB/s", + "bandwidth": "315.82MB/s", "reconnects": 0, - "status_2xx": 15651697, + "status_2xx": 18403039, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -206,18 +274,18 @@ "static-1024": { "framework": "mark", "language": "PHP", - "rps": 288234, + "rps": 288784, "avg_latency": "3.56ms", - "p99_latency": "3.56ms", - "cpu": "6414.4%", - "memory": "192MiB", + "p99_latency": "90.19ms", + "cpu": "6505.1%", + "memory": "193MiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "17.11GB", + "bandwidth": "17.14GB", "reconnects": 0, - "status_2xx": 1470015, + "status_2xx": 1472875, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -225,18 +293,18 @@ "static-4096": { "framework": "mark", "language": "PHP", - "rps": 283712, - "avg_latency": "16.70ms", - "p99_latency": "16.70ms", - "cpu": "6290.1%", - "memory": "236MiB", + "rps": 287265, + "avg_latency": "16.74ms", + "p99_latency": "641.41ms", + "cpu": "6548.7%", + "memory": "233MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "16.84GB", + "bandwidth": "17.06GB", "reconnects": 0, - "status_2xx": 1446729, + "status_2xx": 1465287, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -244,18 +312,18 @@ "static-6800": { "framework": "mark", "language": "PHP", - "rps": 282303, - "avg_latency": "41.40ms", - "p99_latency": "41.40ms", - "cpu": "6303.7%", - "memory": "264MiB", + "rps": 281790, + "avg_latency": "48.74ms", + "p99_latency": "1.99s", + "cpu": "6213.6%", + "memory": "268MiB", "connections": 6800, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "16.76GB", + "bandwidth": "16.73GB", "reconnects": 0, - "status_2xx": 1439751, + "status_2xx": 1437224, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -263,19 +331,19 @@ "upload-256": { "framework": "mark", "language": "PHP", - "rps": 488, - "avg_latency": "460.77ms", - "p99_latency": "2.10s", - "cpu": "5488.5%", - "memory": "2.5GiB", + "rps": 463, + "avg_latency": "484.63ms", + "p99_latency": "2.14s", + "cpu": "5995.6%", + "memory": "2.4GiB", "connections": 256, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "45.43KB/s", - "input_bw": "3.87GB/s", - "reconnects": 408, - "status_2xx": 2440, + "bandwidth": "43.16KB/s", + "input_bw": "3.67GB/s", + "reconnects": 395, + "status_2xx": 2317, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 @@ -283,19 +351,19 @@ "upload-32": { "framework": "mark", "language": "PHP", - "rps": 591, - "avg_latency": "53.79ms", - "p99_latency": "325.60ms", - "cpu": "2016.9%", - "memory": "636MiB", + "rps": 590, + "avg_latency": "53.52ms", + "p99_latency": "339.80ms", + "cpu": "2167.4%", + "memory": "694MiB", "connections": 32, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "54.98KB/s", - "input_bw": "4.69GB/s", - "reconnects": 584, - "status_2xx": 2956, + "bandwidth": "54.92KB/s", + "input_bw": "4.68GB/s", + "reconnects": 581, + "status_2xx": 2952, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/static/logs/api-16/1024/mark.log b/site/static/logs/api-16/1024/mark.log index 47705ab28..91e745245 100644 --- a/site/static/logs/api-16/1024/mark.log +++ b/site/static/logs/api-16/1024/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 16 [OK] diff --git a/site/static/logs/api-4/256/mark.log b/site/static/logs/api-4/256/mark.log index d7f317e17..b5d0b33c3 100644 --- a/site/static/logs/api-4/256/mark.log +++ b/site/static/logs/api-4/256/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 4 [OK] diff --git a/site/static/logs/async-db/1024/mark.log b/site/static/logs/async-db/1024/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/async-db/1024/mark.log +++ b/site/static/logs/async-db/1024/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/baseline/4096/mark.log b/site/static/logs/baseline/4096/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/baseline/4096/mark.log +++ b/site/static/logs/baseline/4096/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/baseline/512/mark.log b/site/static/logs/baseline/512/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/baseline/512/mark.log +++ b/site/static/logs/baseline/512/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/json-comp/16384/mark.log b/site/static/logs/json-comp/16384/mark.log new file mode 100644 index 000000000..d0d8b9da1 --- /dev/null +++ b/site/static/logs/json-comp/16384/mark.log @@ -0,0 +1,8 @@ +Workerman[start.php] start in DEBUG mode +-------------------------------------------- WORKERMAN --------------------------------------------- +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic +--------------------------------------------- WORKERS ---------------------------------------------- +event-loop proto user worker listen count state +event tcp root Mark http://0.0.0.0:8080 64 [OK] +---------------------------------------------------------------------------------------------------- +Press Ctrl+C to stop. Start success. diff --git a/site/static/logs/json-comp/4096/mark.log b/site/static/logs/json-comp/4096/mark.log new file mode 100644 index 000000000..d0d8b9da1 --- /dev/null +++ b/site/static/logs/json-comp/4096/mark.log @@ -0,0 +1,8 @@ +Workerman[start.php] start in DEBUG mode +-------------------------------------------- WORKERMAN --------------------------------------------- +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic +--------------------------------------------- WORKERS ---------------------------------------------- +event-loop proto user worker listen count state +event tcp root Mark http://0.0.0.0:8080 64 [OK] +---------------------------------------------------------------------------------------------------- +Press Ctrl+C to stop. Start success. diff --git a/site/static/logs/json-comp/512/mark.log b/site/static/logs/json-comp/512/mark.log new file mode 100644 index 000000000..d0d8b9da1 --- /dev/null +++ b/site/static/logs/json-comp/512/mark.log @@ -0,0 +1,8 @@ +Workerman[start.php] start in DEBUG mode +-------------------------------------------- WORKERMAN --------------------------------------------- +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic +--------------------------------------------- WORKERS ---------------------------------------------- +event-loop proto user worker listen count state +event tcp root Mark http://0.0.0.0:8080 64 [OK] +---------------------------------------------------------------------------------------------------- +Press Ctrl+C to stop. Start success. diff --git a/site/static/logs/json/4096/mark.log b/site/static/logs/json/4096/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/json/4096/mark.log +++ b/site/static/logs/json/4096/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/limited-conn/4096/mark.log b/site/static/logs/limited-conn/4096/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/limited-conn/4096/mark.log +++ b/site/static/logs/limited-conn/4096/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/limited-conn/512/mark.log b/site/static/logs/limited-conn/512/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/limited-conn/512/mark.log +++ b/site/static/logs/limited-conn/512/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/pipelined/4096/mark.log b/site/static/logs/pipelined/4096/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/pipelined/4096/mark.log +++ b/site/static/logs/pipelined/4096/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/pipelined/512/mark.log b/site/static/logs/pipelined/512/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/pipelined/512/mark.log +++ b/site/static/logs/pipelined/512/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/static/1024/mark.log b/site/static/logs/static/1024/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/static/1024/mark.log +++ b/site/static/logs/static/1024/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/static/4096/mark.log b/site/static/logs/static/4096/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/static/4096/mark.log +++ b/site/static/logs/static/4096/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/static/6800/mark.log b/site/static/logs/static/6800/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/static/6800/mark.log +++ b/site/static/logs/static/6800/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/upload/256/mark.log b/site/static/logs/upload/256/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/upload/256/mark.log +++ b/site/static/logs/upload/256/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK] diff --git a/site/static/logs/upload/32/mark.log b/site/static/logs/upload/32/mark.log index b39c295d1..d0d8b9da1 100644 --- a/site/static/logs/upload/32/mark.log +++ b/site/static/logs/upload/32/mark.log @@ -1,6 +1,6 @@ Workerman[start.php] start in DEBUG mode -------------------------------------------- WORKERMAN --------------------------------------------- -Workerman/5.1.11 PHP/8.5.5 (JIT on) Linux/6.17.0-20-generic +Workerman/5.2.2 PHP/8.5.8 (JIT on) Linux/6.17.0-22-generic --------------------------------------------- WORKERS ---------------------------------------------- event-loop proto user worker listen count state event tcp root Mark http://0.0.0.0:8080 64 [OK]