About 119,000 results
Open links in new tab
  1. profiling - Simplest way to profile a PHP script - Stack Overflow

    No application code changes are necessary to perform this profiling. To enable profiling, install the extension and adjust php.ini settings. Some Linux distributions come with standard packages …

  2. performance - Profiling PHP code - Stack Overflow

    Xdebug's Profiler is a powerful tool that gives you the ability to analyze your PHP code and determine bottlenecks or generally see which parts of your code are slow and could use a …

  3. How can I measure the speed of code written in PHP?

    The other solution, that works quite nice if you want to identify which function takes lots of time in an entire script, is to use : The Xdebug extension, to generate profiling data for the script …

  4. How to measure PHP performance? - Stack Overflow

    Jan 1, 2024 · Have a look at XDebug Profiler to benchmark the performance and more. Xdebug's Profiler is a powerful tool that gives you the ability to analyze your PHP code and determine …

  5. Can you recommend Performance Analysis tools for PHP?

    Apr 4, 2017 · Can anyone recommend some useful performance analysis tools for PHP scripts? Anything that could help me find problematic or unusually slow blocks of code, details about …

  6. performance - What are some best practices for supporting …

    Jul 23, 2012 · 0 I am starting a new project for a high performance php web application. I would like to continually profile the application as I add features to it that way I am able to quickly …

  7. How do you make good use of multicore CPUs in your …

    What schemes, if any, have you used to split up your PHP/MySQL web application processing load among multiple CPU cores? My ideal solution would basically spawn a few processes, let …

  8. performance - How much overhead does the NewRelic PHP agent …

    Any monitoring, profiling or api service adds some overhead to the entire stack. The extension itself is 0.6 MB, which adds up to each php process, this isn't much so my concern is rather …

  9. Find out where your PHP code is slowing down (Performance Issue)

    May 13, 2015 · Have you taken advantage of a PHP code accelerator? One way to test whether the server is your bottleneck is to try running the application on another server. Second, is …

  10. performance - Profile slow PHP pages in production - Stack …

    Jun 7, 2014 · Is there a way of profiling only slow PHP pages on a production server? At the moment we're logging slow pages to a text file, but without more information it's hard to say …