22.Oct.2011 at 14:39 by Paweł Kalisz via api
Nice and brief introduction. Thanks for useful tools :)
Derick Rethans (22.Oct.2011 at 11:00)
Talk at PHPCon Poland 2011 (English - UK)
The web is full of useful advice focussed on pushing out the last bit of performance of your code. They mention trivial changes. like changing every occurrence of print with echo even suggesting to use for instead of foreach. These optimisations help, but you are not going to notice it unless they're in a tight loop with many iterations. It is also a wrong approach for tackling performance issues. Before you can optimise, you need to find out if your code is actually slow; then you need to *understand* the code; and *then* you need to find out where you can optimise it. This talk introduces tools and concepts to optimise the optimisation of your PHP applications.
Quicklink: https://joind.in/3920
Slides: Profiling PHP Applications
By clicking this button you are declaring that you are the speaker responsible for it and a claim request will be sent to the administrator of the event.
If the claim is approved you will be able to edit the information for this talk.
Are you sure?
22.Oct.2011 at 14:39 by Paweł Kalisz via api
Nice and brief introduction. Thanks for useful tools :)
24.Oct.2011 at 10:33 by Anonymous
Very useful presentation. Great tools. Thank you for that one.
24.Oct.2011 at 21:29 by Radosław Benkel
I was expecting a very good presentation and I was not disappointed. I liked that Derick focused not only on XDebug, but approached the topic very maturely presenting a range of techniques and tools possible to use.
29.Oct.2011 at 12:42 by Vokiel
This guy knows what he is talking and doing it in a great way. I knew some of the techniques, but a few things was new for me. Well presented with live demos, great talk.
22.Oct.2011 at 14:19 by Wojciech Tekiela
A very good and interesting introduction to profiling. Really enjoyed it.