未优化前:
ab压测
wenest2 微官网预览页(开启静态缓存) 1600 rps
优化后:
wenest2 微官网预览页(开启静态缓存) 22000 rps !!!!!!!!!!!!!!!!!!!!

结论:优化nginx后对于静态html页没有提高性能。

对于开启静态缓存的thinkphp系统,rps提升十几 倍。

对于不开启静态缓存的php程序,也有不同程度提升。但对 一些过度复杂的php页面提升不太大。
初步测试后台提交及手机端留言提交没有影响。
后续还要继续测试及调整配置参数。

 

 

 

 

以下为nginx 配置

 

 

user www-data;
#worker_processes 4;
worker_processes 8;
worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000; #lenix
worker_rlimit_nofile 102400; #lenix
#这个指令是指当一个nginx进程打开的最多文件描述符数目,理论值应该是最多打开文件数(ulimit -n)与nginx进程数相除,但是nginx分配请求并不是那么均匀,所以最好与ulimit -n的值保持一致。

pid /run/nginx.pid;

events {
use epoll; #lenix
#worker_connections 768;
worker_connections 102400;
# multi_accept on;
}

http {

##
# Basic Settings
##

 

###########lenix###########################

fastcgi_cache_path /var/www/html/fastcgi_cache levels=1:2 keys_zone=fcgi:15m inactive=1d max_size=1g;

fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_cache_methods GET HEAD;
fastcgi_buffer_size 16k;
fastcgi_buffers 16 16k;
fastcgi_busy_buffers_size 16k;
fastcgi_temp_file_write_size 16k;
fastcgi_cache fcgi;
#fastcgi_cache cache_fastcgi;
fastcgi_cache_valid 200 302 1h;
fastcgi_cache_valid 301 1d;
fastcgi_cache_valid any 1m;
fastcgi_cache_min_uses 1;
fastcgi_cache_use_stale error timeout invalid_header http_500;
fastcgi_cache_key $request_method://$host$request_uri; #
#fastcgi_ignore_client_abort on;

 

#open_file_cache max=102400 inactive=20s;
# open_file_cache_valid 30s;
# open_file_cache_min_uses 1;
##############################################

 

sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;

 

open_file_cache max=102400 inactive=20s;
#这个将为打开文件指定缓存,默认是没有启用的,max指定缓存数量,建议和打开文件数一致,inactive是指经过多长时间文件没被请求后删除缓存。
open_file_cache_valid 30s;
# 这个是指多长时间检查一次缓存的有效信息。
open_file_cache_min_uses 1;
#open_file_cache指令中的inactive参数时间内文件的最少使用次数,如果超过这个数字,文件描述符一直是在缓存中打开的,如上例,如果有一个文件在inactive时间内一次没被使用,它将被移除。
# server_tokens off;

server_names_hash_bucket_size 64; #lenix
client_header_buffer_size 2k; #lenix
large_client_header_buffers 4 4k; #lenix
client_max_body_size 8m; #lenix
# server_name_in_redirect off;

include /etc/nginx/mime.types;
default_type application/octet-stream;
charset utf-8,gbk;
##
# Logging Settings
##

access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;

##
# Gzip Settings
##

gzip on;
gzip_disable "msie6";

gzip_vary on;
# gzip_proxied any;
gzip_min_length 1k;
gzip_comp_level 2;
gzip_buffers 4 16k;
gzip_http_version 1.1;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

##
# Virtual Host Configs
##

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
#mail {
# # See sample authentication script at:
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
# # auth_http localhost/auth.php;
# # pop3_capabilities "TOP" "USER";
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
# server {
# listen localhost:110;
# protocol pop3;
# proxy on;
# }
#
# server {
# listen localhost:143;
# protocol imap;
# proxy on;
# }
#}

 

--------------

php-fmp 设置

pm.max_children=512
pm.start_servers=128
pm.min_spare_servers=30
pm.max_spare_servers=128

优化nginx 用fastcgi_cache,压测rps提升10几倍!!!!
标签: