Application Performance
Everything on SkillVeris tagged Application Performance — collected across the glossary, study notes, blog, and cheat sheets.
3 resources across 1 library
Interview Questions(3)
What is the N+1 Query Problem and How Do You Fix It?
The N+1 query problem is a performance anti-pattern where code runs one query to fetch a list of N parent records, then runs one additional query per parent to…
ORM Lazy Loading vs Eager Loading: What is the Difference?
Lazy loading fetches an object's related data only at the moment it is actually accessed in code, issuing a separate query on demand, while eager loading fetch…
What Query Batching Strategies Reduce Database Round Trips?
Query batching combines what would be many individual database round trips into fewer, larger operations — such as a single multi-row INSERT, a batched IN clau…