PHP class method online performance test_PHP tutorial
PHP class method online performance test
A friend in a group asked a question two months ago. He said: "Now their company's project has a module whose online performance is very poor. The problem has not been found for a long time. The boss was furious. The boss asked him to record the execution time of all class methods for analysis, and it should not affect the current project performance. "The boss asked him to record this information to analyze the specific places that affect performance, and remove it after the project has been running for a period of time. This requirement leads to two problems. The first is how to monitor the execution time of all class methods in this module. The second is how to complete it without affecting the performance of the current project (the performance itself is very poor). Here we will do this Two questions to analyze:
1. How to monitor the execution time of all class methods in this module
The first thing he thought about this problem was to add a piece of code to record the time before all class method processing, calculate the running time before returning the data, and then record the log. This method must be feasible, and it will not have a great impact on performance, but... I won't do it anyway. Programmers are lazy, and they are all very smart. We are not coders. If it is implemented like this , then the amount of code to be changed is too large, and meaningless and technical work will be repeated for a long time. Secondly, when I delete it again in the future, I will crash. Of course, none of my friends would do this, so I learned about this strange need.
How to solve it? It is really difficult to solve such a task. We can use __call() and __callStatic() to overload class methods. Before php5.3, static methods could only be added one by one. , thanks to the new __callStatic() magic method in php5.3. Some people may ask that these two magic methods are only useful when the class method does not exist. How can they achieve this requirement? We will look at the code for this question later. Let’s analyze the second question below.
2. How can it be completed without affecting the performance of the current project
Why do I say there is this problem? It was indeed there when analyzing the requirements before, but the solution was already mentioned when answering the first question. I think using __call() and __callStatic() to overload class methods is relatively simple to implement, and it is also good for existing methods. Project performance impact is minimal.
We mainly discuss some other methods in this question. In fact, there are many extensions to achieve performance analysis, such as xdebug, xhprof, etc. It is known that xdebug has a large performance loss and is not suitable for use in a formal environment. xhprof has a relatively small performance loss. Can be used in formal environments. So why not use xhprof? There are three points: 1. The performance loss is slightly larger; 2. The log recording format is inflexible, which causes trouble in log analysis; 3. Some functions cannot be counted, and serious errors will occur (such as: call_user_func_array)
Now that the solution has been determined, let’s take a look at a demo first
/** * 类方法性能监听 * * @author 戚银 thinkercode@sina.com * @date 2015-05-31 22:09 */ class demo { /** * 普通类方法 * * @access public * @return void */ public function test1(){ for($i=0; $i<100; ++$i){ } } /** * 静态方法 * * @access public * @return void */ public static function test2(){ for($i=0; $i<100; ++$i){ } } }
Look at the demo class above. There are two methods in it, one ordinary method and one static method. The way our business layer calls it is as follows:
<?php (new demo())->test1(); demo::test2();
We ensure that one principle is not to change the code outside the class, but only adjust the class to implement it. Below I use __call() and __callStatic() to overload the class method.
<?php /** * 类方法性能监听 * * @author 戚银 thinkercode@sina.com * @date 2015-05-31 22:09 */ class demo { /** * 普通类方法 * * @access public * @return void */ public function _test1(){ for($i=0; $i<100; ++$i){ } } /** * 静态方法 * * @access public * @return void */ public static function _test2(){ for($i=0; $i<100; ++$i){ } } /** * 类魔术方法 * * @access public * @param string $name * @param array $arguments * @return mixed */ public function __call($name, $arguments){ $startTime = microtime(true); $data = call_user_func_array(array($this, '_'.$name), $arguments); echo microtime(true) - $startTime; return $data; } /** * 类魔术方法 * * @access public * @param string $name * @param array $arguments * @return mixed */ public static function __callStatic($name, $arguments){ $startTime = microtime(true); $data = call_user_func_array(array(__CLASS__, '_'.$name), $arguments); echo microtime(true) - $startTime; return $data; } }
In this code we have added the __call() and __callStatic() methods. It is useless if we only add these two methods, because the previous business layer code has not changed and the calling method exists. To make the called method not exist and only change the class itself, we can only add an underscore before the method name (this rule is determined by ourselves), and then when we call these two methods, we find that the execution time of the two methods is output.
Several problems have been discovered in this implementation. There are still a lot of code changes, and each class has to be added, which is very tiring... In fact, it is easy to implement by making use of the tools at hand. Using inheritance is a good way. Write these two methods into a base class, and then all classes will inherit this base class. For class method name replacement, except for constructors and destructors, you can directly use the editor to replace them in batches, and you can change them back later.
Note: If implemented using inheritance, the __CLASS__ of the __callStatic() method needs to be adjusted.
Here is implemented by adding an underscore before the class method so that the business layer cannot find the class method. In fact, this example can also be implemented by adjusting the method visibility, but the visibility implementation method has the following disadvantages:
1. If you want to adjust it back after adjustment, it is very likely that the visibility of class methods will be wrong, and you will not know which methods have been adjusted.
2. Adjusting visibility is only effective for class public methods, not for protected and private methods
Of course, if you only record the performance of public methods of a class, you can use changing method visibility, but you must remember to add a mark on the attention that the method has been changed, and it must be changed from public to private, because if there is class inheritance This class cannot access this method.

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Unfortunately, people often delete certain contacts accidentally for some reasons. WeChat is a widely used social software. To help users solve this problem, this article will introduce how to retrieve deleted contacts in a simple way. 1. Understand the WeChat contact deletion mechanism. This provides us with the possibility to retrieve deleted contacts. The contact deletion mechanism in WeChat removes them from the address book, but does not delete them completely. 2. Use WeChat’s built-in “Contact Book Recovery” function. WeChat provides “Contact Book Recovery” to save time and energy. Users can quickly retrieve previously deleted contacts through this function. 3. Enter the WeChat settings page and click the lower right corner, open the WeChat application "Me" and click the settings icon in the upper right corner to enter the settings page.

Mobile games have become an integral part of people's lives with the development of technology. It has attracted the attention of many players with its cute dragon egg image and interesting hatching process, and one of the games that has attracted much attention is the mobile version of Dragon Egg. To help players better cultivate and grow their own dragons in the game, this article will introduce to you how to hatch dragon eggs in the mobile version. 1. Choose the appropriate type of dragon egg. Players need to carefully choose the type of dragon egg that they like and suit themselves, based on the different types of dragon egg attributes and abilities provided in the game. 2. Upgrade the level of the incubation machine. Players need to improve the level of the incubation machine by completing tasks and collecting props. The level of the incubation machine determines the hatching speed and hatching success rate. 3. Collect the resources required for hatching. Players need to be in the game

Setting font size has become an important personalization requirement as mobile phones become an important tool in people's daily lives. In order to meet the needs of different users, this article will introduce how to improve the mobile phone use experience and adjust the font size of the mobile phone through simple operations. Why do you need to adjust the font size of your mobile phone - Adjusting the font size can make the text clearer and easier to read - Suitable for the reading needs of users of different ages - Convenient for users with poor vision to use the font size setting function of the mobile phone system - How to enter the system settings interface - In Find and enter the "Display" option in the settings interface - find the "Font Size" option and adjust it. Adjust the font size with a third-party application - download and install an application that supports font size adjustment - open the application and enter the relevant settings interface - according to the individual

Mobile phone film has become one of the indispensable accessories with the popularity of smartphones. To extend its service life, choose a suitable mobile phone film to protect the mobile phone screen. To help readers choose the most suitable mobile phone film for themselves, this article will introduce several key points and techniques for purchasing mobile phone film. Understand the materials and types of mobile phone films: PET film, TPU, etc. Mobile phone films are made of a variety of materials, including tempered glass. PET film is relatively soft, tempered glass film has good scratch resistance, and TPU has good shock-proof performance. It can be decided based on personal preference and needs when choosing. Consider the degree of screen protection. Different types of mobile phone films have different degrees of screen protection. PET film mainly plays an anti-scratch role, while tempered glass film has better drop resistance. You can choose to have better

Ollama is a super practical tool that allows you to easily run open source models such as Llama2, Mistral, and Gemma locally. In this article, I will introduce how to use Ollama to vectorize text. If you have not installed Ollama locally, you can read this article. In this article we will use the nomic-embed-text[2] model. It is a text encoder that outperforms OpenAI text-embedding-ada-002 and text-embedding-3-small on short context and long context tasks. Start the nomic-embed-text service when you have successfully installed o

Performance comparison of different Java frameworks: REST API request processing: Vert.x is the best, with a request rate of 2 times SpringBoot and 3 times Dropwizard. Database query: SpringBoot's HibernateORM is better than Vert.x and Dropwizard's ORM. Caching operations: Vert.x's Hazelcast client is superior to SpringBoot and Dropwizard's caching mechanisms. Suitable framework: Choose according to application requirements. Vert.x is suitable for high-performance web services, SpringBoot is suitable for data-intensive applications, and Dropwizard is suitable for microservice architecture.

The performance comparison of PHP array key value flipping methods shows that the array_flip() function performs better than the for loop in large arrays (more than 1 million elements) and takes less time. The for loop method of manually flipping key values takes a relatively long time.

The impact of functions on C++ program performance includes function call overhead, local variable and object allocation overhead: Function call overhead: including stack frame allocation, parameter transfer and control transfer, which has a significant impact on small functions. Local variable and object allocation overhead: A large number of local variable or object creation and destruction can cause stack overflow and performance degradation.
