我有一个 php 应用程序,每月有 815k 个独立用户,它在我的开发机器上加载速度非常快(主页大约 600 毫秒),并且在生产服务器上加载速度很快。
我不是系统管理员,我只是一名开发人员,所以我开始搜索有关诊断服务器的信息,我遵循了以下方法流程图
虽然最近流量有所增加,但服务器资源似乎还不错。
%Cpu(s): 8.3 us, 2.6 sy, 0.0 ni, 87.1 id, 0.0 wa, 0.0 hi, 0.3 si, 1.7 st
我有足够的可用内存。
缩小问题范围后,我尝试了一些得到有趣结果的方法,我从浏览器复制 html 源代码并将其粘贴到生产服务器中的 test.html 中,它在不到 800 毫秒的时间内加载,我采用相同的 html 代码并将其粘贴到 test.php 中,大约需要 6 秒才能加载,两个文件共享相同的 html 代码,文件中没有执行任何数据库查询,所以我认为这与我的 nginx 或 php 配置有关。
这是我的 nginx 配置:
server {
listen 80;
server_name site-name.com;
root /home/user/site-name.com/public;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/site-name.com-error.log error;
error_page 404 /index.php;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~* \.(jpg|jpeg|png|gif|ico|css|js|woff2)$ {
expires 365d;
}
location ~ /\.ht {
deny all;
}
}
css、images、html 和 js 文件加载速度很快。
答案1
我找到了解决方案,虽然我有可用的服务器资源,但它们并未被使用,允许创建的子进程的最大数量只有 5。我有很多内存未被使用。所以我编辑了 FPM 配置,就我而言,我编辑了:/etc/php/7.0/fpm/pool.d/www.conf
我计算了每个进程使用了多少内存以及有多少可用内存,然后更改了以下值:
pm = ondemand
pm.max_children = 125
pm.start_servers =
pm.min_spare_servers = 15
pm.max_spare_servers = 25
您可以检查本教程我遵循了这些来了解有关计算值的更多信息。
现在它的运行速度令人惊奇,最重的页面加载时间不到 1 秒,而且仍有足够的内存。