Skip to content

Commit a3781b8

Browse files
No resources for Lazy loading
1 parent ac38471 commit a3781b8

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,8 +475,7 @@ How would you manage database schema migrations? That is, how would you automate
475475
How is lazy loading achieved? When is it useful? What are its pitfalls?
476476

477477
#### N+1 Problem
478-
The so called "N + 1 problem" is an issue that occurs when code needs to load the children of a parent-child relationship with a ORMs that have lazy-loading enabled, and that therefore issue a query for the parent record, and then one query for each child record. How to fix it?<br/>
479-
[Resources](databases/n1-problem.md)
478+
The so called "N + 1 problem" is an issue that occurs when code needs to load the children of a parent-child relationship with a ORMs that have lazy-loading enabled, and that therefore issue a query for the parent record, and then one query for each child record. How to fix it?
480479

481480
#### Slowest Queries
482481
How would you find the most expensive queries in an application?<br/>

databases/n1-problem.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)