If I try to iterate trough a QueryResult with a lot of relations, my foreach loop needs a lot of time.
/** @var Product $productItem */
foreach ($products as $productItem) {
print($productItem->getTitle());
}
How can I do it the fast way?
Thanks in advance