2 repos
Configurations for distributing database workloads across primary and replica instances to improve performance and availability.
Distinguishing note: None of the candidates matched; this category specifically covers the architectural pattern of read/write splitting.
Explore 2 awesome GitHub repositories matching data & databases · Database Replication Strategies. 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 routes read queries to replica nodes and write operations to the primary instance to improve application scalability and performance.
Sequelize is an object-relational mapping library that provides a unified interface for managing relational data through code. By implementing the Active Record pattern, it maps database tables to application objects, allowing developers to perform standard create, read, update, and delete operations using high-level method calls. The library abstracts complex database interactions by translating these calls into optimized, engine-specific SQL statements, ensuring consistent behavior across different database systems. The project distinguishes itself through a comprehensive suite of tools for
Sequelize distributes query operations across multiple replica servers while directing all write and update operations to a primary instance.