search
HomeBackend DevelopmentPHP7Understand the transformation of PHP7 performance in one minute (performance increased by 4 times)

We have learned so much about php7 in PHP. I don’t know how much you know about php7. I believe that a large number of people will not. If you know this part of the knowledge, then don’t worry. This article will lead you to a deeper understanding of this content.

Background of researching PHP7 technology

  1. We need to save costs under the background of the company's increase in revenue and expenditure reduction
  2. The performance of PHP7 compared to the current PHP version 5.X on Meizu Online At least doubled
  3. The daily active users of the community are growing rapidly (the average daily PV of 15 years of data has an annual growth of 348% and the average daily UV has an annual growth of 112%)
  4. The mobile Internet environment requires us to The program can respond to user requests faster to meet better user experience
  5. Desire for knowledge about new technologies (to satisfy a little bit of vanity)

PHP7 performance is small Note

Initial impression of PHP7 performance (3 times + improved than PHP5)

1. Performance comparison - quick sort algorithm (randomly generate 5000 numbers and then sort according to the quick algorithm)

Understand the transformation of PHP7 performance in one minute (performance increased by 4 times)
PHP5.1 The average response time of quick sorting with 5000 numbers is 2587ms
PHP5.2 The average response time of quick sorting with 5000 numbers is 2625ms
PHP5.3 The average response time of quick sorting with 5000 numbers is 2509ms
PHP5.4 5000 number quick sorting average response time 2339ms
PHP7.0 5000 number quick sorting average response time 685ms

2. Performance comparison - WordPress homepage

Understand the transformation of PHP7 performance in one minute (performance increased by 4 times)
PHP5.1 WordPress average response time 505ms
PHP5.2 WordPress average response time 521ms
PHP5.3 WordPress average response time 498ms
PHP5.4 WordPress average response time 470ms
PHP7. 0 WordPress average response time 158ms

3. Performance comparison-Flyme Community APP

Understand the transformation of PHP7 performance in one minute (performance increased by 4 times)
PHP5.4 500 quick sorting TPS 552
PHP7.0 500 Number quick sort TPS 3165
Flyme community APP home page PHP5.4 TPS 1535
Flyme community APP home page PHP7.0 TPS 1975
Flyme community APP section list page PHP5.4 TPS 2237
Flyme community APP section List page PHP7.0 TPS 2387

Several problems encountered in performance testing & solutions

Why can the performance of PHP7 be improved so much?

1. JIT
2. Changes in Zval
3. Internal type zend_string
4. Changes in PHP arrays (HashTable and Zend Array)
5. Function calling mechanism (Function Calling Convention)
6. Through macro definitions and inline functions (inline), let the compiler complete part of the work in advance

Why is the actual business performance improvement of PHP7 only about 30%?

  1. Actual business does not necessarily have very complex calculation logic
  2. Actual business will use Redis and MYSQL, and network and IO bottlenecks affect the overall performance of PHP7
  3. HTTPS performance issues limit the capabilities of PHP7

Redis Proxy issues

The purpose of Redis Proxy is for Redis high availability & distributed caching
Passed The performance test is relatively direct connection to redis. The performance loss of using Proxy is about 10-15% (different businesses may have relatively large differences)

So is there room for optimization of Proxy?

PHP7 Redis long connection performance is about 10% higher than short connection performance (different businesses vary greatly)

MYSQL database connection pool Question

Understand the transformation of PHP7 performance in one minute (performance increased by 4 times)

The database connection pool is responsible for allocating, managing and releasing database connections. It allows applications to reuse an existing database connection instead of establishing a new one.
Atlas is database middleware developed and maintained by 360. It is located between the application and MySQL. It implements the client-server protocol of MySQL, communicates with the application as a server, and communicates with MySQL as a client. It shields DB details from applications and reduces the burden on MySQL.

Atlas supports main database downtime without affecting reading, read-write separation, automatic table sharding, security processing, smooth restart, connection pool, etc.
After using the database connection pool, the TPS performance leverage is increased by 80%
Let’s take a look at the effect

Understand the transformation of PHP7 performance in one minute (performance increased by 4 times)

Some details of PHP7 performance optimization

PHP7 Opcache (about 1 times improvement)

Opcache working principle?
  1. PHP is an interpreted language. The Zend engine will interpret the PHP code into executable machine code (Operate Code) and then hand it over to the CPU for execution.
    Understand the transformation of PHP7 performance in one minute (performance increased by 4 times)
  2. How Opcache accelerates
    Understand the transformation of PHP7 performance in one minute (performance increased by 4 times)

  3. Look at the results after adding opcache (request average The response time has been reduced by half.)
    Understand the transformation of PHP7 performance in one minute (performance increased by 4 times)

Compiler GCC4.8 PGO (increase 5%-10%)

PGO is a compilation optimization technology that can be used with compilers such as GCC to improve the compilation efficiency of the compiler.
Although PGO can improve compilation efficiency, it is not widely used.
The reason is very simple:
1. Its complicated dual compilation model and limited usage scenarios make PGO seem useless
2. After the emergence of products like opcache, the performance improvement brought by PGO It's not very obvious.

Open multiple PHP-FPM main processes (increase about 10%)

<source lang="xml" collapse="false" first-line="1">
    #php-fpm.conf 
    listen = /dev/shm/php-fcgi.sock
    #php-fpm2.conf 
    listen = /dev/shm/php-fcgi2.sock

    #/usr/local/php/sbin/php-fpm --fpm-config /usr/local/php/etc/php-fpm.conf
    #/usr/local/php/sbin/php-fpm --fpm-config /usr/local/php/etc/php-fpm2.conf

    #代理
    upstream backend{
        server unix:/dev/shm/php-fcgi.sock;
        server unix:/dev/shm/php-fcgi2.sock;
    }
</source>

HugePage (increase 2%-3%)

The default memory is paged at 4KB, and the virtual address and the memory address need to be converted, and this conversion requires a table lookup.
In order to speed up the table lookup process, the CPU will have a built-in TLB (Translation Lookaside Buffer). Obviously, if the virtual page is smaller, the number of entries in the table will be more.
And the TLB size is limited. The more entries, the higher the Cache Miss of the TLB will be. So if we can enable large memory pages, This TLB Cache Miss can be indirectly reduced.

<source lang="xml" collapse="false" first-line="1">
    opcache.huge_code_pages=1
    sudo sysctl vm.nr_hugepages=128
</source>

Phase performance parameter optimization

PHP partial performance parameter optimization

  1. php.ini configuration

    <source lang="xml" collapse="false" first-line="1">
        opcache.enable=1
        opcache.enable_cli=1
        opcache.memory_consumption=128
        opcache.interned_strings_buffer=8
        opcache.max_accelerated_files=4000
        opcache.revalidate_freq=60
        opcache.save_comments=0
        opcache.fast_shutdown=1
        opcache.huge_code_pages=1
        opcache.file_cache=/dev/shm/opcache/
    </source>
  2. PHP-FPM

    <source lang="xml" collapse="false" first-line="1">
        listen = /dev/shm/php-fcgi.sock
        pm = static
        pm.max_children = 320
        pm.max_requests = 10240
    </source>

Unresolved issues

Nginx HTTPS performance issues

##Background of researching PHP7 technology

    We need to save costs under the background of the company's increase in revenue and expenditure reduction
  1. Compared to the current Meizu, PHP7 The performance of the online PHP version 5. The general environment of mobile Internet requires that our programs can respond to user requests faster to meet better user experience
  2. Desire for knowledge about new technologies (to satisfy a little bit of vanity)
  3. Related learning video sharing:
  4. php video tutorial

The above is the detailed content of Understand the transformation of PHP7 performance in one minute (performance increased by 4 times). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
如何使用PHP进行性能分析和调优如何使用PHP进行性能分析和调优Jun 06, 2023 pm 01:21 PM

作为一种流行的服务端语言,PHP在网站开发和运行中扮演着重要的角色。然而,随着PHP代码量的不断增加和应用程序的复杂性提高,性能瓶颈也越来越容易出现。为了避免这种问题,我们需要进行性能分析和调优。本文将简单介绍如何使用PHP进行性能分析和调优,为您的应用程序提供更高效的运行环境。一、PHP性能分析工具1.XdebugXdebug是一款广泛使用的代码分析工具,

如何利用并发编程框架提升PHP性能如何利用并发编程框架提升PHP性能Aug 12, 2023 am 09:33 AM

如何利用并发编程框架提升PHP性能随着Web应用的复杂性不断增加,高并发处理成为了开发者面临的一个挑战。传统的PHP语言在处理并发请求时存在性能瓶颈,这就迫使开发者寻找更高效的解决方案。利用并发编程框架,如Swoole和ReactPHP,可以显著提升PHP的性能和并发处理能力。本文将介绍如何通过使用Swoole和ReactPHP来提高PHP应用的性能。我们将

PHP CI/CD与PHP性能:如何提高您的项目性能?PHP CI/CD与PHP性能:如何提高您的项目性能?Feb 19, 2024 pm 08:06 PM

PHPCI/CD介绍CI/CD(持续集成和持续交付)是一种软件开发实践,可以帮助开发团队更频繁地交付高质量的软件。CI/CD流程通常包括以下步骤:开发人员将代码提交到版本控制系统。构建系统自动构建代码并运行单元测试。如果构建和测试通过,则将代码部署到测试环境。测试人员在测试环境中测试代码。如果测试通过,则将代码部署到生产环境。CI/CD如何提高php项目的性能?CI/CD可以提高PHP项目的性能,原因有以下几点:自动化测试。CI/CD流程通常包括自动化测试,可以帮助开发团队尽早发现和修复错误。这

PHP中的安全性和性能权衡PHP中的安全性和性能权衡Jul 06, 2023 pm 08:57 PM

PHP中的安全性和性能权衡摘要:PHP作为一种流行的Web编程语言,不仅提供了灵活的开发环境和丰富的功能,同时也面临着安全性和性能的权衡。本文将探讨PHP中的安全性和性能问题,并提供一些代码示例来说明如何在两者之间寻求平衡。引言:在Web应用程序开发中,安全性和性能是两个互相关联却又独立重要的方面。服务器端语言PHP具备良好的编程特性和强大的功能,然而,不合

PHP函数在容器化环境下的性能提升PHP函数在容器化环境下的性能提升Apr 13, 2024 pm 03:42 PM

容器化环境中的PHP函数性能优化策略包括:升级PHP版本优化PHP配置(如增加内存限制、启用OPcache等)使用PHP扩展(如APC、Xdebug、Swoole等)优化容器配置(如设置内存和CPU限制)

如何使用Memcache提高PHP应用程序的性能?如何使用Memcache提高PHP应用程序的性能?Nov 07, 2023 pm 12:02 PM

Memcache是一种高效的缓存解决方案,可以大大提高PHP应用程序的性能。在本文中,我们将介绍如何使用Memcache来优化PHP应用程序的性能,并提供具有实际意义的PHP代码示例。什么是Memcache?Memcache是一种开源的分布式缓存解决方案,它可以将数据存储在内存中,从而快速地提供响应。因为数据存储在内存中,所以查询速度非常快。与其他数据库解决

使用微服务如何提高PHP功能的性能与响应速度?使用微服务如何提高PHP功能的性能与响应速度?Sep 18, 2023 pm 12:03 PM

使用微服务如何提高PHP功能的性能与响应速度?在日益发展的互联网时代,高性能和快速响应成为了用户对于网站和应用的基本要求。而作为一种常用的后端开发语言,PHP也需要不断提升自身的性能和响应速度以满足用户需求。而微服务架构则成为了一种优秀的解决方案,它不仅可以提高PHP应用的性能,还可以提供更好的扩展性和可维护性。本文将介绍如何使用微服务来提高PHP功能的性能

如何使用PHP进行性能分析和调优如何使用PHP进行性能分析和调优Jun 06, 2023 pm 01:21 PM

作为一种流行的服务端语言,PHP在网站开发和运行中扮演着重要的角色。然而,随着PHP代码量的不断增加和应用程序的复杂性提高,性能瓶颈也越来越容易出现。为了避免这种问题,我们需要进行性能分析和调优。本文将简单介绍如何使用PHP进行性能分析和调优,为您的应用程序提供更高效的运行环境。一、PHP性能分析工具1.XdebugXdebug是一款广泛使用的代码分析工具,

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

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

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