1 repo
Architectural patterns and techniques to improve database query efficiency and throughput.
Distinguishing note: Focuses on structural query improvements like join optimization rather than specific API features.
Explore 1 awesome GitHub repository matching data & databases · Query Optimization Patterns. Refine with filters or upvote what's useful.
TypeORM is an object-relational mapper for TypeScript and JavaScript that bridges the gap between object-oriented application code and relational database tables. It provides a comprehensive data persistence layer that allows developers to define database entities using class decorators or configuration objects, enabling seamless interaction with data through object-oriented patterns. The project distinguishes itself through a flexible architecture that supports both the data mapper and repository patterns, alongside a fluent query builder that translates high-level method calls into platform
TypeORM prevents the N+1 query problem by joining related tables in a single database query using join methods instead of executing separate queries for each row.