nginx 使用gzip和Brotli压缩对比测试
server 同时使用gzip和Brotli压缩对比测试,代码如下
1
2
3
4
5
6
7
8
9
10
11
12
13
gzip on;
gzip_disable "MSIE [1-6]\.";
gzip_proxied any;
gzip_comp_level 3;
gzip_min_length 1k;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types text/plain text/css application/json application/x-javascript text/javascript text/xml application/xml application/xml+rss image/jpeg image/gif image/png;
brotli on;
brotli_comp_level 3;
brotli_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml;
15 个请求
已传输 181.39 KB / 74.56 KB
完成:4.78 秒
DOMContentLoaded: 3.61 秒
load: 4.94 秒 #################################
48540923dd54564e717962685c908285d1584f1d.jpeg
禁用Brotli压缩,使用gzip压缩
结果如下:
15 个请求
已传输 181.39 KB / 159.66 KB
完成:4.01 秒
DOMContentLoaded: 2.95 秒
load: 4.31 秒
###############################
启用gzip压缩,禁用Brotli压缩
结果如下:
15 个请求
已传输 47.10 KB / 448.58 KB
完成:3 秒
DOMContentLoaded: 1.71 秒
load: 3.08 秒
似乎测试结果不相上下。以上测试结果都是多次禁用缓存刷新取值结果。仅供参考。
💘 相关文章
- 重新编译nginx,以便支持最新的quic(http3)以及 brotli 压缩
- nginx 开启http3 QUIC和配置Brotli压缩和反向代理的详细教程
- nginx: [warn] "ssl_stapling" ignored, not supported告警
- register nginx systemctl service
- nginx 反向代理后端并缓存数据的方法
- nginx反向代理配置演示,包括静态资源处理,百分百成功
- nginx: [emerg] Solution to unknown directive "set_real_ip_from"
- nginx: [warn] "ssl_stapling" ignored, issuer certificate not found for certificate的错误解决方法
- Nginx – Unit nginx.service is masked的解决方法
- Configure nginx to only allow cloudflare's IP to connect to the server shell script