awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目MCP 服务器关于排名机制媒体报道
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 个仓库

Awesome GitHub RepositoriesAssociation Lazy Loading

Deferring the loading of related entities until they are explicitly accessed in the application.

Distinct from Deferred Database Loading: The candidates are focused on class-loading, UI-loading, or plugin-loading; this is specifically about ORM entity associations.

Explore 2 awesome GitHub repositories matching data & databases · Association Lazy Loading. Refine with filters or upvote what's useful.

Awesome Association Lazy Loading GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • doctrine/ormdoctrine 的头像

    doctrine/orm

    10,172在 GitHub 上查看↗

    Doctrine ORM is a PHP object-relational mapper that connects application objects to relational database tables. It uses the data mapper and identity map patterns to decouple the in-memory object model from the database schema, allowing developers to manage data persistence without writing manual SQL. The project features a dedicated object-oriented query language and programmatic builder for retrieving data based on entities rather than tables. It implements a unit-of-work system to track object changes during a request and synchronize them via atomic transactions. The capability surface inc

    Defers the retrieval of related objects until they are accessed, significantly reducing initial database load.

    PHPhacktoberfest
    在 GitHub 上查看↗10,172
  • ebean-orm/ebeanebean-orm 的头像

    ebean-orm/ebean

    1,523在 GitHub 上查看↗

    Ebean is a Java object-relational mapping framework designed to simplify database persistence through automated query generation, schema migration, and transaction management. It uses metadata-driven mapping and bytecode enhancement to bridge the gap between application objects and relational database tables, providing a persistent layer that handles complex data interactions while maintaining consistency across unit-of-work boundaries. The framework distinguishes itself through its focus on developer productivity and performance optimization. It provides type-safe query builders that generat

    Intercepts property access on entity objects to fetch associated data from the database only when requested.

    Javacockroachdbdatabaseebean
    在 GitHub 上查看↗1,523
  1. Home
  2. Data & Databases
  3. Association Lazy Loading

探索子标签

  • Association Loading StrategiesTechniques for controlling when related entities are loaded, including eager and lazy loading. **Distinct from Association Lazy Loading:** Covers both eager and lazy loading as a unified strategy, whereas the candidate only covers lazy loading.