您好,登錄后才能下訂單哦!
這篇文章主要介紹“laravel9和laravels性能測試實例分析”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“laravel9和laravels性能測試實例分析”文章能幫助大家解決問題。
配置 laravels 的 http 服務器
基于 安裝了 docker 的環境
curl -s "https://laravel.build/laravel9" | bashCopy
composer require hhxsv5/laravel-sCopy
php artisan laravels publishCopy
說明: 站點對應的項目代碼都是 /var/www/laravel9/public
(1) 配置 laravels 的 http 服務器
注意:laravels 項目需要在 laravel9 項目下的.env 文件中增加以下配置:upstream laravels {
# Connect IP:Port
server workspace:5200 weight=5 max_fails=3 fail_timeout=30s;
keepalive 16;
}
server {
listen 80;
server_name swoole.test;
root /var/www/laravel9/public;
index index.php index.html index.htm;
# Nginx 處理靜態資源,LaravelS 處理動態資源
location / {
try_files $uri @laravels;
}
location @laravels {
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Real-PORT $remote_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header Scheme $scheme;
proxy_set_header Server-Protocol $server_protocol;
proxy_set_header Server-Name $server_name;
proxy_set_header Server-Addr $server_addr;
proxy_set_header Server-Port $server_port;
proxy_pass http://laravels;
}
error_log /var/log/nginx/swoole_test_error.log;
access_log /var/log/nginx/swoole_test_access.log;
}
LARAVELS_LISTEN_IP=workspace
LARAVELS_DAEMONIZE=trueCopy
(2) 配置普通 laravel 項目站點
server {
listen 80;
listen [::]:80;
# For https
# listen 443 ssl;
# listen [::]:443 ssl ipv6only=on;
# ssl_certificate /etc/nginx/ssl/default.crt;
# ssl_certificate_key /etc/nginx/ssl/default.key;
server_name laravel.test;
root /var/www/laravel9/public;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
try_files $uri /index.php =404;
fastcgi_pass php-upstream;
fastcgi_index index.php;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#fixes timeouts
fastcgi_read_timeout 600;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
location /.well-known/acme-challenge/ {
root /var/www/letsencrypt/;
log_not_found off;
}
error_log /var/log/nginx/laravel_error.log;
access_log /var/log/nginx/laravel_access.log;
}
(3) 本地 host 配置
127.0.0.1 swoole.test127.0.0.1 laravel.testCopy
(4) 重新 build 容器
docker-compose stop
docker-compose build workspace nginx
docker-compose up -d redis mysql nginx workspaceCopy
(5) 進入 workspace 容器啟動 laravels
進入容器命令:
docker exec -it d4940755a928 /bin/bashCopy
AB 性能測試結果
核心關注的是每秒請求數(Requests per second)
都是基于 Laradock 環境
共享同一份項目代碼
1.總請求數是 100,并發數是 10(左側為 swoole,右側為 laravel9):
2.總請求數是 1000,并發數是 20(左側為 swoole,右側為 laravel9)。
關于“laravel9和laravels性能測試實例分析”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。