I am working on optimizing my site, and I have had the MySQL slow queries log on for a few days now, but after going through >260M queries, it only logged 6 slow queries, and those were special ones executed by me on phpMyAdmin. I am wondering if there is something to log slow PHP page execution time so that I can find certain pages that are hogging resources, rather than specific queries.
|
2
|
|||||||||||
|
|
|
First, there is xdebug, which has a profiler, but I wouldn't use that on a production machine, since it injects code and brings the speed to a crawl. Very good for testing environments, though. If you want to measure speeds on a productive environment, I would just to the measuring manually.
|
||||||
|
|
|
You could wrap your scripts in a simple timer, like this:
Note that will add two function executions and a tiny bit of math as overhead. |
|||
|
|
|
|
Could you not register a shutdown function that calls an end to the timer? http://us3.php.net/register%5Fshutdown%5Ffunction That way you only need to start the timer wherever you think there might be a problem. |
||
|
|
