DEV Community

Discussion on: Optimizing your PHP app speed

Collapse
 
ddziaduch profile image
Damian Dziaduch

You should really start with checking you SQL queries. You can have ultra fast code, but usually the problem are the queries... And other external calls like APIs. You should really focus on that first 🙂

Collapse
 
elabftw profile image
eLabFTW

Yes sure, but this is not what this post is about ;)

But maybe I can add a sentence saying that all of this won't make your code magically fast and one needs to use profilers and optimize SQLs to get serious.