laravel9 和 laravels 效能大比拼!

2022-11-28 18:00:48

前言:最近想使用 swoole 試試 websocket, 正好安裝測試下 laravel 和 swoole 效能,不知道是不是 laravel9 效能優化的好,最後壓測結果和 laravels 的差不多~

Laradock 安裝 swoole

ed4899685b5f07e2135d4602c13d982.jpg

Laravel 9 保姆級視訊教學,想學不會都難!進入學習

動手操作後遇到問題:
406a026ed7007a10f428f6a0893480a.jpg

因為原先的 PHP 版本是 7.4,需要修改.env 檔案,將版本切換到 8.0 及以上 (laravels 安裝的時候要求 php 是 8.1,所以還是設定成 8.1 版本的):
2029fd47cf338094a3fbc4b7c9a88ac.jpg

再次執行 build 命令後成功。【推薦:】

驗證結果:
14a43fc4c7f5fdec05a7f3dd81dfd3f.jpg

設定 laravels 的 http 伺服器

1. 安裝 laravel 專案

教學很多,此處參考自:Laravel 9 中文檔案 - 安裝

基於 安裝了 docker 的環境

curl -s "https://laravel.build/laravel9" | bashCopy
登入後複製

2. 安裝 laravels

composer require hhxsv5/laravel-sCopy
登入後複製

3. 釋出 laravels 設定

php artisan laravels publishCopy
登入後複製

4. 設定站點

說明: 站點對應的專案程式碼都是 /var/www/laravel9/public

(1) 設定 laravels 的 http 伺服器

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 專案需要在 laravel9 專案下的.env 檔案中增加以下設定:

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
登入後複製

8af3bba1ba753e49505ce331c9e8730.jpg

(5) 進入 workspace 容器啟動 laravels

進入容器命令:

docker exec -it d4940755a928 /bin/bashCopy
登入後複製

75f9720d82a9fccdbc50b98fb70f837.jpg

AB 效能測試結果

  • 核心關注的是每秒請求數(Requests per second)
  • 都是基於 Laradock 環境
  • 共用同一份專案程式碼

1.總請求數是 100,並行數是 10(左側為 swoole,右側為 laravel9):
6fed5cab1c9d66b6ef8aca2a4e2d0f7.jpg

2.總請求數是 1000,並行數是 20(左側為 swoole,右側為 laravel9);
9a4392b610e69e6c6560b697200b75f.jpg

差距不明顯,甚至有時候 laravel9 的結果更好,這樣的結果算翻車嗎~

原文地址:https://learnku.com/articles/73575

以上就是laravel9 和 laravels 效能大比拼!的詳細內容,更多請關注TW511.COM其它相關文章!