Where:src/routes/+page.server.ts Why: Querying all records joined with ratings will scale poorly. Fix: Add a .limit() clause and consider basic pagination or infinite scrolling.
**Where:** `src/routes/+page.server.ts`
**Why:** Querying all records joined with ratings will scale poorly.
**Fix:** Add a `.limit()` clause and consider basic pagination or infinite scrolling.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Where:
src/routes/+page.server.tsWhy: Querying all records joined with ratings will scale poorly.
Fix: Add a
.limit()clause and consider basic pagination or infinite scrolling.