Make your PHP 7 faster (GCC PGO)
We have been working hard to improve the performance of PHP7. Last month we noticed that GCC’s PGO can bring nearly 10% performance improvement on WordPress. This makes us very excited.
However, as the name says, PGO (Profile Guided Optimization, if you are interested, Google it), it needs to use some use cases to obtain feedback, which means that this optimization needs to be bound to a specific scenario.
Your optimization in one scenario may backfire in another scenario. It is not a universal optimization. So we cannot simply include these optimizations, nor can we directly publish PGO compiled PHP7.
Of course, we are trying to find some common optimizations from PGO, and then manually apply them to PHP7, but this obviously cannot achieve the effect that special optimization for a scene can achieve, so I decided to write this article Briefly introduce how to use PGO to compile PHP7, so that the PHP7 you compile can make your own independent application faster.
First of all, the first thing to decide is what scenario to use for Feedback GCC. We usually choose: In the scenario you want to optimize: the page with the most visits, the most time-consuming, and the heaviest resource consumption.
Take WordPress as an example, we choose the homepage of WordPress (because the homepage is often the most visited).
Let’s take my machine as an example:
<ol class="dp-c"><li class="alt"><span><span>Intel(R) Xeon(R) CPU X5687 @ 3.60GHz X 16(超线程), </span></span></li><li><span> </span></li><li class="alt"><span>48G Memory </span></li></ol>
php-fpm uses a fixed 32 workers, and opcache uses the default configuration (be sure to load opcache)
Taking wordpress 4.1 as the optimization scenario..
First, let’s test the current performance of WP in PHP7 (ab -n 10000 -c 100):
<ol class="dp-c"><li class="alt"><span><span>$ ab -n 10000 -c 100 http:</span><span class="comment">//inf-dev-maybach.weibo.com:8000/wordpress/</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>This is ApacheBench, Version 2.3 <<span class="vars">$Revision</span><span>: 655654 $> </span></span></li><li><span> </span></li><li class="alt"><span>Copyright 1996 Adam Twiss, Zeus Technology Ltd, http:<span class="comment">//www.zeustech.net/</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>Licensed to The Apache Software Foundation, http:<span class="comment">//www.apache.org/</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>Benchmarking inf-dev-maybach.weibo.com (be patient) </span></li><li><span> </span></li><li class="alt"><span>Completed 1000 requests </span></li><li><span> </span></li><li class="alt"><span>Completed 2000 requests </span></li><li><span> </span></li><li class="alt"><span>Completed 3000 requests </span></li><li><span> </span></li><li class="alt"><span>Completed 4000 requests </span></li><li><span> </span></li><li class="alt"><span>Completed 5000 requests </span></li><li><span> </span></li><li class="alt"><span>Completed 6000 requests </span></li><li><span> </span></li><li class="alt"><span>Completed 7000 requests </span></li><li><span> </span></li><li class="alt"><span>Completed 8000 requests </span></li><li><span> </span></li><li class="alt"><span>Completed 9000 requests </span></li><li><span> </span></li><li class="alt"><span>Completed 10000 requests </span></li><li><span> </span></li><li class="alt"><span>Finished 10000 requests </span></li><li><span> </span></li><li class="alt"><span>Server Software: nginx/1.7.12 </span></li><li><span> </span></li><li class="alt"><span>Server Hostname: inf-dev-maybach.weibo.com </span></li><li><span> </span></li><li class="alt"><span>Server Port: 8000 </span></li><li><span> </span></li><li class="alt"><span>Document Path: /wordpress/ </span></li><li><span> </span></li><li class="alt"><span>Document Length: 9048 bytes </span></li><li><span> </span></li><li class="alt"><span>Concurrency Level: 100 </span></li><li><span> </span></li><li class="alt"><span>Time taken <span class="keyword">for</span><span> tests: 8.957 seconds </span></span></li><li><span> </span></li><li class="alt"><span>Complete requests: 10000 </span></li><li><span> </span></li><li class="alt"><span>Failed requests: 0 </span></li><li><span> </span></li><li class="alt"><span>Write errors: 0 </span></li><li><span> </span></li><li class="alt"><span>Total transferred: 92860000 bytes </span></li><li><span> </span></li><li class="alt"><span>HTML transferred: 90480000 bytes </span></li><li><span> </span></li><li class="alt"><span>Requests per second: 1116.48 [#/sec] (mean) </span></li><li><span> </span></li><li class="alt"><span>Time per request: 89.567 [ms] (mean) </span></li><li><span> </span></li><li class="alt"><span>Time per request: 0.896 [ms] (mean, across all concurrent requests) </span></li><li><span> </span></li><li class="alt"><span>Transfer rate: 10124.65 [Kbytes/sec] received </span></li></ol>
It can be seen that WordPress 4.1 is currently on this machine, and the QPS of the homepage can reach 1116.48. That is, it can handle so many requests for the homepage per second,
Now, let’s start teaching GCC and let him compile PHP7 that can run WordPress 4.1 faster. First, GCC 4.0 or above is required, but I recommend that everyone use GCC-4.8 or above (now all GCC-5.1 ).
The first step is to download the source code of PHP7, and then do ./configure. There is no difference between these
The next thing is the difference. We must first compile PHP7 for the first time so that it can generate an executable file that generates profile data:
<ol class="dp-c"><li class="alt"><span><span>$ make prof-gen <br /></span></span></li></ol>
Note that we used the prof-gen parameter (this is unique to the Makefile of PHP7, don’t try to do this in other projects :) )
Then, let’s start training GCC:
<ol class="dp-j"><li class="alt"><span><span>$ sapi/cgi/php-cgi -T </span><span class="number">100</span><span> /home/huixinchen/local/www/htdocs/wordpress/index.php >/dev/</span><span class="keyword">null</span><span> </span></span></li></ol>
That is, let php-cgi run the WordPress homepage 100 times to generate some profile information in the process.
Then, we start compiling PHP7 for the second time.
<ol class="dp-c"><li class="alt"><span><span>$ make prof-clean </span></span></li><li><span>$ make prof-<span class="keyword">use</span><span> && make install </span></span></li></ol>
Okay, it’s that simple, PGO compilation is completed, now let’s take a look at the performance of PHP7 after PGO compilation:
<ol class="dp-j"><li class="alt"><span><span>$ ab -n10000 -c </span><span class="number">100</span><span> http:</span><span class="comment">//inf-dev-maybach.weibo.com:8000/wordpress/</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>This is ApacheBench, Version <span class="number">2.3</span><span> <$Revision: </span><span class="number">655654</span><span> $> </span></span></li><li><span> </span></li><li class="alt"><span>Copyright <span class="number">1996</span><span> Adam Twiss, Zeus Technology Ltd, http:</span><span class="comment">//www.zeustech.net/</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>Licensed to The Apache Software Foundation, http:<span class="comment">//www.apache.org/</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>Benchmarking inf-dev-maybach.weibo.com (be patient) </span></li><li><span> </span></li><li class="alt"><span>Completed <span class="number">1000</span><span> requests </span></span></li><li><span> </span></li><li class="alt"><span>Completed <span class="number">2000</span><span> requests </span></span></li><li><span> </span></li><li class="alt"><span>Completed <span class="number">3000</span><span> requests </span></span></li><li><span> </span></li><li class="alt"><span>Completed <span class="number">4000</span><span> requests </span></span></li><li><span> </span></li><li class="alt"><span>Completed <span class="number">5000</span><span> requests </span></span></li><li><span> </span></li><li class="alt"><span>Completed <span class="number">6000</span><span> requests </span></span></li><li><span> </span></li><li class="alt"><span>Completed <span class="number">7000</span><span> requests </span></span></li><li><span> </span></li><li class="alt"><span>Completed <span class="number">8000</span><span> requests </span></span></li><li><span> </span></li><li class="alt"><span>Completed <span class="number">9000</span><span> requests </span></span></li><li><span> </span></li><li class="alt"><span>Completed <span class="number">10000</span><span> requests </span></span></li><li><span> </span></li><li class="alt"><span>Finished <span class="number">10000</span><span> requests </span></span></li><li><span> </span></li><li class="alt"><span>Server Software: nginx/<span class="number">1.7</span><span>.</span><span class="number">12</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>Server Hostname: inf-dev-maybach.weibo.com </span></li><li><span> </span></li><li class="alt"><span>Server Port: <span class="number">8000</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>Document Path: /wordpress/ </span></li><li><span> </span></li><li class="alt"><span>Document Length: <span class="number">9048</span><span> bytes </span></span></li><li><span> </span></li><li class="alt"><span>Concurrency Level: <span class="number">100</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>Time taken <span class="keyword">for</span><span> tests: </span><span class="number">8.391</span><span> seconds </span></span></li><li><span> </span></li><li class="alt"><span>Complete requests: <span class="number">10000</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>Failed requests: <span class="number">0</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>Write errors: <span class="number">0</span><span> </span></span></li><li><span> </span></li><li class="alt"><span>Total transferred: <span class="number">92860000</span><span> bytes </span></span></li><li><span> </span></li><li class="alt"><span>HTML transferred: <span class="number">90480000</span><span> bytes </span></span></li><li><span> </span></li><li class="alt"><span>Requests per second: <span class="number">1191.78</span><span> [#/sec] (mean) </span></span></li><li><span> </span></li><li class="alt"><span>Time per request: <span class="number">83.908</span><span> [ms] (mean) </span></span></li><li><span> </span></li><li class="alt"><span>Time per request: <span class="number">0.839</span><span> [ms] (mean, across all concurrent requests) </span></span></li><li><span> </span></li><li class="alt"><span>Transfer rate: <span class="number">10807.45</span><span> [Kbytes/sec] received </span></span></li></ol>
Now it can process 1191.78 QPS per second, the improvement is ~7%. Not bad (Hey, didn’t you say 10%? How come it is 7%? Haha, as I said before, we try to analyze PGO has done some optimizations, and then manually applied some common optimizations to PHP7. So in other words, ~3% of the more common optimizations have been included in PHP7, and of course this work is still continuing).
So it’s that simple. You can use the classic scenes of your own products to train GCC. In a few simple steps, you can get improved. Why not do it :)
thanks
Editor’s note: This article is the work of PHP master——Brother Bird @Laruence, original address: http://www.laruence.com/2015/06/19/3063.html


PHP remains important in modern web development, especially in content management and e-commerce platforms. 1) PHP has a rich ecosystem and strong framework support, such as Laravel and Symfony. 2) Performance optimization can be achieved through OPcache and Nginx. 3) PHP8.0 introduces JIT compiler to improve performance. 4) Cloud-native applications are deployed through Docker and Kubernetes to improve flexibility and scalability.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

The reasons why PHP is the preferred technology stack for many websites include its ease of use, strong community support, and widespread use. 1) Easy to learn and use, suitable for beginners. 2) Have a huge developer community and rich resources. 3) Widely used in WordPress, Drupal and other platforms. 4) Integrate tightly with web servers to simplify development deployment.

PHP remains a powerful and widely used tool in modern programming, especially in the field of web development. 1) PHP is easy to use and seamlessly integrated with databases, and is the first choice for many developers. 2) It supports dynamic content generation and object-oriented programming, suitable for quickly creating and maintaining websites. 3) PHP's performance can be improved by caching and optimizing database queries, and its extensive community and rich ecosystem make it still important in today's technology stack.

In PHP, weak references are implemented through the WeakReference class and will not prevent the garbage collector from reclaiming objects. Weak references are suitable for scenarios such as caching systems and event listeners. It should be noted that it cannot guarantee the survival of objects and that garbage collection may be delayed.

The \_\_invoke method allows objects to be called like functions. 1. Define the \_\_invoke method so that the object can be called. 2. When using the $obj(...) syntax, PHP will execute the \_\_invoke method. 3. Suitable for scenarios such as logging and calculator, improving code flexibility and readability.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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.

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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Chinese version
Chinese version, very easy to use