Nginx merges request connections and speeds up website access examples

Nginx merges request connections and speeds up website access examples

Preface

As one of the best web servers in the world, Nginx's advantages are self-evident. Let's talk about how Nginx merges request connections.

Quick Facts

When we browse the web, an important factor affecting the browsing speed is the number of concurrent browsers. To put it simply, the number of concurrent tasks is the number of tasks that are performed simultaneously when browsing a web page.

Of course, the browser's concurrent request limit is for the same domain name. There is a certain limit on the number of requests under the same domain name at the same time. Requests exceeding the limit will be blocked.

First, let's look at the number of concurrent connections for each browser:

List the possible considerations for the browser to make this decision

  • Due to the limitation of TCP protocol, the PC has only 65536 ports available for external connections, and the operating system also limits the number of half-open connections to protect the TCPIP protocol stack resources of the operating system from being exhausted quickly. Therefore, the browser should not issue too many TCP connections. Instead, it should reuse the TCP connection after it is used up or simply re-establish the TCP connection.
  • If a blocking socket model is used to establish a connection, issuing multiple connections at the same time will cause the browser to have to open several more threads, and threads are sometimes not considered lightweight resources. After all, the cost of a context switch is not small.
  • This is the browser acting as a conscientious client to protect the server. Just like the collision detection mechanism of Ethernet, the client must decide a waiting period by itself when using public resources. When more than two clients want to use public resources, the stronger evil client may cause the weaker clients to be completely unable to access the public resources. Xunlei was criticized in the past because it was not a conscientious client. As an HTTP protocol client, it did not consider the pressure on the server, and as a BT client, it did not consider its obligation to feedback the upload volume.

Taobao tengine

When we visit some websites, we will see that some js and css files in the code are obtained through one request. The above knowledge knows that the number of concurrent browser requests is limited, but if multiple records are merged into one request, the response speed may be accelerated.

The tengine used by Taobao is a web server based on nginx, which has been open source since the end of 2011. The open source module nginx-http-concat can merge multiple files into one response message.

Install

Installing the third-party module nginx-http-concat for the first time

wget http://tengine.taobao.org/download/tengine-2.2.0.tar.gz
wget https://github.com/alibaba/nginx-http-concat/archive/master.zip -O nginx-http-concat-master.zip
unzip nginx-http-concat-master.zip
tar -xzvf tengine-2.2.0.tar.gz
cd tengine-2.2.0

Configuration, compilation and installation

 ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --add-module=../nginx-http-concat-master
 make
 make install

If Nginx has already been installed, just configure the third-party plug-in. Nginx -V, check the version of Nginx. If it is not available, download the corresponding version.

Just execute the code.

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --add-module=../nginx-http-concat-master
make

After successful compilation

#Please back up the nginx executable file before copying cp /objs/nginx /usr/local/nginx/sbin/nginx

Kill Nginx and restart it.

Configuration

Add the following configuration to the location section:

location /static/css/ {
  concat on;
  concat_max_files 20;
  concat_unique off;
  concat_types text/css application/javascript;
}

Merge method

http://static.52itstyle.com/static/css/??index.css,common.css?v=20171111

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Speed ​​up nginx performance: enable gzip and cache
  • Detailed explanation of how to configure Nginx to obtain user IP when using CDN acceleration
  • Nginx cache acceleration configuration method under WIN
  • Use nginx-http-concat module to merge static resource files in nginx
  • Solution to the unknown directive that cannot be opened due to Nginx configuration file problems

<<:  Summarize the problems encountered in using Vue Element UI

>>:  Solution to the problem that MySQL in Windows system cannot input and display Chinese

Recommend

Defining the minimum height of the inline element span

The span tag is often used when making HTML web p...

Vue3 Documentation Quick Start

Table of contents 1. Setup 1. The first parameter...

Initial settings after installing Ubuntu 16 in the development environment

The office needs Ubuntu system as the Linux devel...

How to simulate network packet loss and delay in Linux

netem and tc: netem is a network simulation modul...

How to use Navicat to export and import mysql database

MySql is a data source we use frequently. It is v...

Vue implements drag and drop or click to upload pictures

This article shares the specific code of Vue to a...

Summary of basic SQL statements in MySQL database

This article uses examples to describe the basic ...

HTML structured implementation method

DIV+css structure Are you learning CSS layout? Sti...

CSS method of controlling element height from bottom to top and from top to bottom

Let’s start the discussion from a common question...

React handwriting tab switching problem

Parent File import React, { useState } from '...

How to remove carriage return characters from text in Linux

When the carriage return character ( Ctrl+M ) mak...

HTML Tutorial: Collection of commonly used HTML tags (6)

These introduced HTML tags do not necessarily ful...

Why is it not recommended to use index as the key attribute value in Vue?

Table of contents Preface The role of key The rol...

Share CSS writing standards and order [recommended for everyone to use]

CSS writing order 1. Position attributes (positio...

Summary of MySQL composite indexes

Table of contents 1. Background 2. Understanding ...