From b476ca008013bd8e4461d5ed908982d7c2214752 Mon Sep 17 00:00:00 2001 From: Alucard <85690382+Alucard2169@users.noreply.github.com> Date: Sat, 11 May 2024 06:29:37 +0530 Subject: [PATCH] Add resources for N+1 Problem (#4952) Add additional resource links Co-authored-by: Kamran Ahmed --- .../108-more-about-databases/103-n-plus-one-problem.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/backend/content/108-more-about-databases/103-n-plus-one-problem.md b/src/data/roadmaps/backend/content/108-more-about-databases/103-n-plus-one-problem.md index 6cf0e41b9..6bc11878d 100644 --- a/src/data/roadmaps/backend/content/108-more-about-databases/103-n-plus-one-problem.md +++ b/src/data/roadmaps/backend/content/108-more-about-databases/103-n-plus-one-problem.md @@ -4,4 +4,6 @@ The N+1 query problem happens when your code executes N additional query stateme Visit the following resources to learn more: -- [What is the N+1 query problem and how to solve it?](https://planetscale.com/blog/what-is-n-1-query-problem-and-how-to-solve-it)) +- [In Detail Explanation of N+1 Problem](https://medium.com/doctolib/understanding-and-fixing-n-1-query-30623109fe89) +- [What is the N+1 Problem]("https://planetscale.com/blog/what-is-n-1-query-problem-and-how-to-solve-it") +- [Solving N+1 Problem: For Java Backend Developers]("https://dev.to/jackynote/solving-the-notorious-n1-problem-optimizing-database-queries-for-java-backend-developers-2o0p")