My problem is similar to this one https://stackoverflow.com/questions/28755079/phalcon-performance-related-queries
When I have a relation between two models and use $results = Projects::find();
this generates many select-statements.
In PHQL I would write one JOIN and get all the data. So I wonder if there is a huge performance difference between these methods?
E.g. I have 10.000 data entries and want to select all of them. Do the user notice the performance difference when I use JOIN instead of Model::find()?
I know I can use the QueryBuilder but this is not as smooth as simply using $results = Projects::find();
Or is there a possibility to use the find method with a join?