Since I started working, except for novice tasks, I have basically dealt with the server side, and my time working on the front-end has been very short
Current performance monitoring and testing of the company: Xhprof and ab testing
Xhprof----facebook's open source, lightweight PHP performance analysis tool: including the number of function calls, the time spent (the time spent by itself and the time spent by internal functions), the memory/CPU occupied, and the Peak memory usage and percentage
For details on how to install it, you can go to Baidu to use it. This is really easy to use. You can quickly know which function of which file the performance bottleneck is, and then optimize it in a targeted manner: give a screenshot to explain specificallyDatabase, check the source code, there is a join table query, and then the query is placed in foreach, resulting in many small queries. Next, all that’s left is targeted optimization