After studying React for a while, I want to put it into practice. So I restructured my personal blog website. It took about a week to rebuild the website successfully. However, once it was online, the access speed was really slow, so slow that I couldn't stand it. It was such a small website with only a few articles, and it was so slow that it was unacceptable. I'm not a perfectionist, but this won't do. I spent some time later on performance research. I found out there was a reason for the slowness. Frameworks like React?The current mainstream front-end frameworks React, Vue, and Angular all use client-side rendering (server-side rendering is not within the scope of this article). This of course greatly reduces the pressure on the server. The relative pressure on the browser has increased. This means that a large number of js files need to be run locally. And it takes time to download these large js files from the server. It takes time to run these js again. This is the fundamental reason why the homepage loads slowly. Of course, it is only the home page, because of the subsequent cache, it is relatively fast. So how to increase the speed? There are two ways to start
Before the specific optimization, let me talk about the server configuration of my blog website.
The test environment uses Firefox browser, and the access speed before optimization is as follows Isn’t it very slow? So slow that it makes me doubt my life. It takes 6 seconds to load a blog post of more than 2,000 words. Let’s optimize it step by step based on my own blog. Improve the speed of downloading static resourcesThere are many ways to increase the speed of downloading static resources. Upgrading HTTP1.1 to HTTP2.0, enabling gzip data compression, using CDN, etc., are the most effective ways to increase the speed. My own website is also mainly optimized from these aspects one by one to improve the speed. Upgrading HTTP1.1 to HTTP2 It was like this before the upgrade After upgrading to HTTP2.0, it looks like this So how to upgrade? Upgrading also requires conditions.
I don't know if the nginx and openssl versions can be passed server { listen 443 ssl http2 . . . } That’s it. Isn’t it very simple? Then restart the nginx server. (This upgrade will not significantly improve access speed.) Enable gzip data compression As can be seen from the above figure, the data in the transfer column and the size column are equal, that is, the size of the file is the same as the size of the file, and there is no compression at all. For large files such as 1.4M, compression is very necessary. What's more, this is just a simple blog site. This is one of the main culprits that slows things down. So it is necessary for us to perform gzip compression. So how do we turn on gzip? Is it very difficult? In fact, it is very simple. Nginx already supports it, and we only need a simple configuration. Modify the nginx configuration file in the same way server { listen 443 ssl http2 #...many gzip on are omitted in the middle; gzip_buffers 32 4k; gzip_comp_level 6; gzip_min_length 200; gzip_types text/css text/xml application/javascript application/json; } in
Similarly, restart the nginx server. As can be seen from the figure, the speed is greatly improved. Looking at the Transfer and Size columns, the difference in size is huge. After completing these two steps, the speed has been reduced from 6 seconds to about 2 seconds.
Optimize code to improve running speedIn multiple request testing. We found that there are still many small files, but they are quite time-consuming to run. Of course, this is related to operations such as React creating a DOM tree. However, we can still see if there is any other room for optimization in the code. It was too slow for such a small website. I thought the code I wrote must have some time-consuming operations, and it turned out to be the case. This code in the website const markdownHtml = marked(content_mark || ''); It takes some time to convert markdown to html. If the article is very large, this time cannot be ignored. In this case, when saving markdown, we can directly save two copies of data, one is the original markdown data, and the other is the data after the markdown is converted to HTML. When the page is rendered, the converted HTML code is directly obtained, which saves conversion time. We can also take advantage of React's Of course, improving user experience during the loading process is also an important part. Although it cannot effectively increase the running speed, it can make users more happy. As the saying goes, time flies by when you are happy. This is the end of this article about the detailed explanation of the performance optimization case of the slow loading problem of the React homepage. For more relevant content on the performance optimization of the slow loading problem of the React homepage, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to expand Linux swap memory
>>: Nginx/Httpd reverse proxy tomcat configuration tutorial
GNU Parallel is a shell tool for executing comput...
The execution relationship between the href jump ...
Table of contents 1. Introduction 2. RC and RR is...
Table of contents Preface Install vue-i18n Config...
0x00 Introduction WordPress is the most popular C...
Table of contents 1. Create a Hadoop directory in...
I encountered a strange network problem today. I ...
1. Source of the problem A friend @水米田 asked me a...
Table of contents 1. The relationship between red...
1. Case Take all employees who are not the head o...
This article uses examples to illustrate the usag...
Preface Everyone should be familiar with the watc...
Preface During the development process, we someti...
I believe everyone is familiar with database inde...
1. Four startup methods: 1.mysqld Start mysql ser...