search
HomeBackend DevelopmentPHP TutorialWEB project optimization skills (must know)

1. Minimize HTTP Requests Reduce HTTP requests
Pictures, css, script, flash, etc. will increase the number of http requests. Reducing the number of these elements can reduce the response time. Write multiple JS and CSS into one file if possible. It is also a bad practice to write images directly into the page. You should write them into CSS and use CSS sprites Use the background to position the small pictures after piecing them together.
  2. Use a Content Delivery Network Using CDN technology
CDN is indeed a good thing, but the server provider generally charges a fee for this service.
  3.Add an Expires or a Cache-Control Header Set header file expiration or static cache
  The browser will use caching to reduce the number of http requests to speed up the page loading time. If the page header adds a very With a long expiration time, the browser will keep caching the elements in the page. However, if something on the page changes, the name will need to be changed, otherwise the client will not actively refresh. It depends on your own measurement~ This can be achieved by modifying the .htaccess file.
 4.Gzip Components Gzip Compression
Gzip format is a very common compression technology. Almost all browsers have the ability to decompress the Gzip format, and the compression ratio it can compress is very large. The general compression rate 85%
  5. Put Stylesheets at the Top Put CSS at the top
 so that visitors can see the complete style of the website as early as possible.
  6. Put Scripts at the Bottom Put JS at the bottom
  After the website is rendered, you can set the functions. Of course, these JS must not affect the content performance during your loading process.
  7.Avoid CSS Expressions
  CSS expressions are terrible. This thing that is only supported by IE requires a very large amount of calculations when executed. It will be recalculated every time you move the mouse.
  8.Make JavaScript and CSS External Link JS and CSS
  I talked about caching earlier. For some more common JS and CSS, we can use external links. For example, I use external links from Google. For the linked Jquery file, if my visitor has downloaded and cached this file when browsing other websites that use this external link file, then he does not need to download it when browsing my website! ~
  9.Reduce DNS Lookups Reduce DNS lookups
  It seems to be to reduce the website’s call of external resources. My Google analysis and picasa’s external link pictures are included in it.
  10.Minify JavaScript and CSS Reduce the size of JS and CSS
There are skills in writing JS and CSS. Use the least code to achieve the same function, reduce white space, enhance logic, and use abbreviations. Wait, of course there are many tools that can help you achieve this.
 11. Avoid Redirects Avoid redirects
 When writing the link, although "http://www.today-s-ooxx. com" and "http://www.today-s-ooxx. com/" only has one final "/" difference, but the results are different. The server needs to spend time redirecting the former to the latter and then jump. You need to pay attention to this. You can also use Alias ​​or mod_rewrite in Apache. Or use DirectorySlash to solve it.
  12. Remove Duplicate Scripts
 The browser will not recognize and ignore the code that is called repeatedly, but will calculate it again, which is of course a big waste. 13. Configure ETags Configure ETags
I don’t know what happened, anyway, I deleted it in . htaccess
  14. Make Ajax Cacheable Cache Ajax
Before the browser receives new data, the old data is cached, which can better improve efficiency
  15. Flush the Buffer Early Release the buffer as early as possible
  When the user makes a page request, the server The end needs to spend 200 to 500 milliseconds to assemble the HTML and write it between the head and the body to release the buffer. This way, the file header can be sent first and then the file content can be sent to improve efficiency
  16. Use GET. for AJAX Requests Use GET method to make AJAX requests
  The Get method only interacts with the server once (sending data), while Post requires two times (sending headers and then sending data).
 17. Post-load Components Delay Loading components
Load the necessary components first to initialize the page, and then load others, YUI Image Loader
is a good example.
  18. Preload components Preload components
Loading things that may be used later does not conflict with lazy loading. Its purpose is to provide a faster response to subsequent requests, see CSS on the Google homepage sprites application.
  19. Reduce the Number of DOM Elements Reduce the number of DOM elements
 Complex page structure means longer download and response time, more reasonable and efficient use of tags to structure the page, which is a good front-end Prerequisites.
  20. Split Components Across Domains
  Multiple sources of page components can increase your parallel downloads, but be careful not to have too many. More than 2-4 domain names will cause the above mentioned DNS lookup waste.
  21. Minimize the Number of iframes Reduce the number of iframes
 Need to use ifames more effectively.
iframe advantages: good for downloading slow third-party content such as ads, security sandbox, parallel download scripts
iframe disadvantages: even if it is empty, it will consume a lot of resources, will prevent the onload of the page, non-semantic
  22. No 404s Do not have 404 pages
  404 pages appear on the site itself (not search results). Meaningless 404 pages will affect the user experience and consume server resources.
  23. Reduce Cookie Size Reduce Cookie
  Cookies are exchanged through file headers between the server and the browser, reducing the cookie size as much as possible and setting a reasonable expiration time, which can greatly improve efficiency. .

The above introduces the WEB project optimization skills (must know), including the relevant content. 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
利用CSS怎么创建渐变色边框?5种方法分享利用CSS怎么创建渐变色边框?5种方法分享Oct 13, 2021 am 10:19 AM

利用CSS怎么创建渐变色边框?下面本篇文章给大家分享CSS实现渐变色边框的5种方法,希望对大家有所帮助!

css ul标签怎么去掉圆点css ul标签怎么去掉圆点Apr 25, 2022 pm 05:55 PM

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

css与xml的区别是什么css与xml的区别是什么Apr 24, 2022 am 11:21 AM

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

css3怎么实现鼠标隐藏效果css3怎么实现鼠标隐藏效果Apr 27, 2022 pm 05:20 PM

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

rtl在css是什么意思rtl在css是什么意思Apr 24, 2022 am 11:07 AM

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

css怎么实现英文小写转为大写css怎么实现英文小写转为大写Apr 25, 2022 pm 06:35 PM

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

css怎么设置i不是斜体css怎么设置i不是斜体Apr 20, 2022 am 10:36 AM

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

怎么设置rotate在css3的旋转中心点怎么设置rotate在css3的旋转中心点Apr 24, 2022 am 10:50 AM

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

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),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment