search
nginx spdy protocolAug 08, 2016 am 09:31 AM
apachechromegooglehttp

SPDY is an application layer protocol based on Transmission Control Protocol (TCP) developed by Google. The development team is promoting SPDY to become a formal standard (now an Internet draft). SPDY The protocol is designed to improve web page load times and improve security through compression, multiplexing, and prioritization. (SPDY is the nickname of Speedy, which means faster)

The relationship between SPDY and HTTP

The SPDY protocol only greatly optimizes HTTP in terms of performance. Its core idea is to minimize the number of connections. , and the semantics of HTTP have not been significantly modified. Specifically, SPDY It uses HTTP methods and headers, but deletes some headers and rewrites the parts of HTTP that manage connections and data transfer formats, so it is basically compatible with HTTP.

Google stated in the SPDY white paper that it will penetrate into the protocol stack and replace the transport layer protocol (TCP), but because this is currently very difficult to deploy and implement, so Google plans to improve the application layer protocol HTTP first, first adding a session layer on top of SSL to implement the SPDY protocol, while the GET and POST message formats of HTTP remain unchanged, that is, all existing server applications do not need to be modified. .

So at present, the purpose of SPDY is to strengthen HTTP and provide a better implementation and support for HTTP. As for whether SPDY will be replaced by a civet cat for a prince after it is widely used in the future. It's Google's job to revolutionize HTTP and revolutionize the entire Internet.

Why build a new SPDY?

It has been more than ten years since Tim Berners-Lee, the father of the World Wide Web, invented and promoted HTTP to become the most popular protocol on the Internet today (the current HTTP 1.1 specification has also been stagnant for 13 years), as now With the rapid development of WEB technology, especially the continuous evolution of HTML5, including the emergence of the WebSockets protocol and changes in the current network environment and changes in transmission content, the original HTTP specification has gradually been unable to meet people's needs. HTTP needs further development, so HTTPbis work A group has been formed and authorized to consider HTTP 2.0, hoping to address many of the limitations currently imposed by HTTP. SPDY is a protocol launched by Google when HTTP is about to cross from 1.1 to 2.0 in an attempt to become the next generation of Internet communications. It has long been considered the only viable option for HTTP 2.0.

Disadvantages of HTTP protocol

1. Single-way connection request is inefficient

The biggest disadvantage of HTTP protocol is that each TCP connection can only correspond to one HTTP request, that is, each HTTP connection only requests one resource. , the browser can only solve it by establishing multiple connections. In addition Requests in HTTP are strictly first-in, first-out (FIFO). If a request in the middle takes a long time to process, subsequent requests will be blocked.

(Note: Although HTTP pipelining has improved connection requests, the complexity has increased greatly and has not been popularized)

2. HTTP only allows requests to be actively initiated by the client

The server only Being able to wait for the client to send a request is a constraint in meeting the current status of preloading.

3. HTTP header redundancy

HTTP headers are sent repeatedly in the same session, and redundant information in the middle, such as User-Agent, Host and other information that does not need to be sent repeatedly, are also sent repeatedly. Waste of bandwidth and resources.

Advantages of SPDY protocol

1. Multiplexing request optimization

SPDY stipulates that there can be unlimited parallel requests within a SPDY connection, which allows multiple concurrent HTTP requests to share a TCP session. This way SPDY is multiplexed in a single TCP Multiple requests on the connection, instead of opening a separate connection for each request, so that only one TCP connection can be established to transfer all resources on the web page, which not only reduces the round-trip time for message interaction but also avoids the delay caused by creating a new connection. Make TCP more efficient.

In addition, SPDY's multiplexing can set priorities. Unlike traditional HTTP, which strictly processes requests one by one according to first-in-first-out, it will selectively transmit more important resources such as CSS first and then transmit them. Less important resources such as website icons can avoid the problem of non-critical resources occupying network channels and improve TCP performance.

2. Support server push technology

The server can actively initiate communication to the client and push data to the client. This preloading can keep users on a fast network.

3. SPDY compresses HTTP headers

discards unnecessary header information. After compression, it can save the waiting time and bandwidth caused by redundant data transmission.

4. Mandatory use of SSL transmission protocol

Google believes that the future development direction of the Web must be secure network connections. After all requests for SSL encryption, information transmission will be more secure.

The meaning of SPDY protocol

According to Google, SPDY was created for the sole purpose of making the Web faster (strive to make the whole web fast), and its name SPDY (Speedy) also seems to be hinting at this. So what is the significance of SPDY?

1. Ordinary users:

For users, there is no difference between SPDY hidden under the browser and HTTP, but we can feel that Google services are extremely fast under Chrome. This is Credit goes to SPDY. In addition, after website information transmission is encrypted, there is no need to worry about information being intercepted, etc., which greatly increases security and confidentiality.

2. Front-end staff:

For front-end engineers, improving page efficiency is a very important thing. Currently, most methods like CSS Sprites are used to optimize the website. Because each page is loaded when the page is loaded, pictures, icons They all request one connection and even reference different images on different pages to reduce the number of image requests on one page. Now with SPDY's request optimization, the order of requests can be rearranged, which can largely alleviate the impact of image requests when the page is loaded. For example, if there are too many registered users on the registration page of Geek Park, such as the 2012 Innovation Conference of Geek Park or the 27th Great Wall Conference of Geek Park, it can be clearly felt that the request for avatars will slow down the overall page loading or even slow it down. I believe that those who often go to Taobao or Weibo will have a deep understanding of this. Once the Internet speed is slightly slower, page loading abnormalities will occur. There are also products like the Apple App Store (excluding server delays due to regions). Application icons on application distribution platforms such as Doujia are slow to refresh, as shown in the video below.

3. Operation and maintenance personnel:

While reducing the number of connections, SPDY also reduces the resources occupied by each client on the server, thus freeing up more memory and CPU. In addition, SPDY combined can double browsing speeds and improve page loading latency by up to 64%.

  SPDY protocol supported by everyone

If you are using the Chrome browser and Google network services such as Gmail, you are actually no longer accessing these services through HTTP. Open in browser chrome://net-internals/#spdy will find that you are already using the SPDY protocol. (In addition to Google's own Gmail, Google Plus and other Google services, other public sites such as Twitter and Webtide have also supported this protocol. In China, Wandoujia 2.0 based on WebKit has also stated that it will introduce Chrome's SPDY technology to further improve Speed.

The implementation of SPDY requires support from both the browser client and the web server. Needless to say, Google’s own Chrome and Chromium series already support SPDY on the client browser; Mozilla's Firefox also supports SPDY by default since Firefox 13. Amazon's Silk's use of SPDY is actually no worse than Google's own Chrome and Firefox.

In terms of web servers, including the most popular and widespread Apache, Netty, Jeety, Varnish, Erlang and Hightide application servers and Node.js servers have also announced support for SPDY. (Nginx also said it will support SPDY)

How to deploy SPDY?

Recently, Google has officially released the plug-in mod_spdy for the most popular web server Apache. After downloading and installing it, your Apache server can use it. The SPDY protocol communicates with browsers that are compatible with the SPDY protocol, such as Chrome, FireFox, etc. As mentioned before, SPDY runs over HTTPS, and non-HTTPS traffic will not be affected by mod_spdy.

SPDY deployment requirements:

1. Apache 2.2 (≥2.2.4)

2. mod_ssl module enabled

SPDY deployment steps:

1. Download mod_spdy module

Go to the download page to download the installation package for the corresponding system

2. Install the mod_spdy module

Run the following command line in the system terminal

dpkg -i mod-spdy-*. deb

apt-get -f install

-The system is Debian/Ubuntu

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

yum install at (if you do not already have ' at' installed)

rpm -U mod-spdy-*.rpm

-The system is CentOS/Fedora

3. Restart the server (Apache)

sudo /etc/init.d /apache2 restart (Debian/Ubuntu)

4. Confirm whether it is enabled or not

Open the Chrome browser, enter and go to the chrome://net-internals/#spdy page, and check whether the host name appears in the identification bar middle. If it appears, it means the deployment has been completed. If it does not appear, check the server error log (error.log).

The above introduces the spdy protocol of nginx, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Springboot怎么使用内置tomcat禁止不安全HTTPSpringboot怎么使用内置tomcat禁止不安全HTTPMay 12, 2023 am 11:49 AM

Springboot内置tomcat禁止不安全HTTP方法1、在tomcat的web.xml中可以配置如下内容让tomcat禁止不安全的HTTP方法/*PUTDELETEHEADOPTIONSTRACEBASIC2、Springboot使用内置tomcat没有web.xml配置文件,可以通过以下配置进行,简单来说就是要注入到Spring容器中@ConfigurationpublicclassTomcatConfig{@BeanpublicEmbeddedServletContainerFacto

JAVA发送HTTP请求的方式有哪些JAVA发送HTTP请求的方式有哪些Apr 15, 2023 am 09:04 AM

1.HttpURLConnection使用JDK原生提供的net,无需其他jar包,代码如下:importcom.alibaba.fastjson.JSON;importjava.io.BufferedReader;importjava.io.InputStream;importjava.io.InputStreamReader;importjava.io.OutputStream;importjava.net.HttpURLConnection;

nginx中如何升级到支持HTTP2.0nginx中如何升级到支持HTTP2.0May 24, 2023 pm 10:58 PM

一、前言#ssl写在443端口后面。这样http和https的链接都可以用listen443sslhttp2default_server;server_namechat.chengxinsong.cn;#hsts的合理使用,max-age表明hsts在浏览器中的缓存时间,includesubdomainscam参数指定应该在所有子域上启用hsts,preload参数表示预加载,通过strict-transport-security:max-age=0将缓存设置为0可以撤销hstsadd_head

Nginx的HTTP2协议优化与安全设置Nginx的HTTP2协议优化与安全设置Jun 10, 2023 am 10:24 AM

随着互联网的不断发展和改善,Web服务器在速度和性能上的需求也越来越高。为了满足这样的需求,Nginx已经成功地掌握了HTTP2协议并将其融入其服务器的性能中。HTTP2协议要比早期的HTTP协议更加高效,但同时也存在着特定的安全问题。本文将为您详细介绍如何进行Nginx的HTTP2协议优化和安全设置。一、Nginx的HTTP2协议优化1.启用HTTP2在N

Nginx中HTTP的keepalive怎么配置Nginx中HTTP的keepalive怎么配置May 12, 2023 am 11:28 AM

httpkeepalive在http早期,每个http请求都要求打开一个tpcsocket连接,并且使用一次之后就断开这个tcp连接。使用keep-alive可以改善这种状态,即在一次tcp连接中可以持续发送多份数据而不会断开连接。通过使用keep-alive机制,可以减少tcp连接建立次数,也意味着可以减少time_wait状态连接,以此提高性能和提高httpd服务器的吞吐率(更少的tcp连接意味着更少的系统内核调用,socket的accept()和close()调用)。但是,keep-ali

Python的HTTP客户端模块urllib与urllib3怎么使用Python的HTTP客户端模块urllib与urllib3怎么使用May 20, 2023 pm 07:58 PM

一、urllib概述:urllib是Python中请求url连接的官方标准库,就是你安装了python,这个库就已经可以直接使用了,基本上涵盖了基础的网络请求功能。在Python2中主要为urllib和urllib2,在Python3中整合成了urllib。Python3.x中将urllib2合并到了urllib,之后此包分成了以下四个模块:urllib.request:它是最基本的http请求模块,用来模拟发送请求urllib.error:异常处理模块,如果出现错误可以捕获这些异常urllib

怎么利用Java实现调用http请求怎么利用Java实现调用http请求Jun 02, 2023 pm 04:57 PM

一、概述在实际开发过程中,我们经常需要调用对方提供的接口或测试自己写的接口是否合适。很多项目都会封装规定好本身项目的接口规范,所以大多数需要去调用对方提供的接口或第三方接口(短信、天气等)。在Java项目中调用第三方接口的方式有:1、通过JDK网络类Java.net.HttpURLConnection;2、通过common封装好的HttpClient;3、通过Apache封装好的CloseableHttpClient;4、通过SpringBoot-RestTemplate;二、Java调用第三方

Nginx http运行状况健康检查如何配置Nginx http运行状况健康检查如何配置May 14, 2023 pm 06:10 PM

被动检查对于被动健康检查,nginx和nginxplus会在事件发生时对其进行监控,并尝试恢复失败的连接。如果仍然无法恢复正常,nginx开源版和nginxplus会将服务器标记为不可用,并暂时停止向其发送请求,直到它再次标记为活动状态。上游服务器标记为不可用的条件是为每个上游服务器定义的,其中包含块中server指令的参数upstream:fail_timeout-设置服务器标记为不可用时必须进行多次失败尝试的时间,以及服务器标记为不可用的时间(默认为10秒)。max_fails-设置在fai

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software