Blog
Insights into my everyday programming life and other interesting technical tidbits
Posts about:
performance, doctrine, php
Clear filter
February 2025
Published on Feb 20, 2025
· approx. 1 min read
Doctrine ORM: Detecting and Solving the N+1 Problem
The N+1 problem is the most common performance anti-pattern in Doctrine projects. This post explains how it occurs, how to detect it, and how to solve it efficiently with join fetching, batch loading and QueryBuilder.
Read More →