Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Profiling PHP @ 4Developers 2016

Profiling PHP @ 4Developers 2016

You cannot improve what you cannot measure. That's why profiling applications should always be the first step before trying to improve its performance. Learn how to spot your applications' bottlenecks and how to adopt profiling into your developer pipeline. This presentation will introduce some PHP profiling tools such as XDebug or XHProf as well as Blackfire.io.

Sebastian Grodzicki

April 11, 2016
Tweet

More Decks by Sebastian Grodzicki

Other Decks in Technology

Transcript

  1. – Steve Souders „80-90% of the end-user response time is

    spent on the frontend. Start There.” Performance Golden Rule
  2. Inclusive vs Exclusive Time function foo()
 {
 $str = bar();

    return $str; } function foo()
 {
 $str = bar(); return $str; }