awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 مستودعات

Awesome GitHub RepositoriesEntity Second-Level Caching

Caches dehydrated entity data in a shared store to avoid redundant lookups across sessions.

Distinct from Multi-level Caching: Specific to the second-level cache pattern for entities in an ORM, not general multi-tier server caching.

Explore 5 awesome GitHub repositories matching data & databases · Entity Second-Level Caching. Refine with filters or upvote what's useful.

  1. Home
  2. Data & Databases
  3. Multi-level Caching
  4. Entity Second-Level Caching

Awesome Entity Second-Level Caching GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • doctrine/ormالصورة الرمزية لـ doctrine

    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

    Implements a second-level cache to store frequently accessed entities and collections across sessions.

    PHPhacktoberfest
    عرض على GitHub↗10,172
  • hibernate/hibernate-ormالصورة الرمزية لـ hibernate

    hibernate/hibernate-orm

    6,447عرض على GitHub↗

    Hibernate ORM هو أداة ربط كائني علائقي (ORM) للغة Java، وتطبيق كامل لواجهة Jakarta Persistence API. يعمل كطبقة تجريد لقواعد بيانات SQL تقوم بتحويل نماذج كائنات Java إلى مخططات قواعد بيانات علائقية لإدارة استمرارية البيانات ودورة حياتها. يتميز إطار العمل بنظام لعزل البيانات متعدد المستأجرين (multi-tenant) لفصل بيانات العملاء داخل مثيل قاعدة بيانات واحد. كما يحتوي على مُنشئ لمخطط قاعدة البيانات يقوم تلقائياً بإنتاج وتحديث الهياكل العلائقية بناءً على تعيينات الكيانات. يغطي النظام مجالات واسعة تشمل إدارة المعاملات، والتحكم في قفل التزامن، وتتبع البيانات الزمنية لسجلات التدقيق. ويوفر أدوات لتحسين جلب البيانات من خلال استراتيجيات الرسوم البيانية للكيانات (entity-graph)، ويدعم أنواع بيانات متقدمة مثل البيانات المتجهة (vector data) والحروف الوطنية.

    Maintains a session-scoped map of entity identifiers to object instances to ensure referential integrity.

    Java
    عرض على GitHub↗6,447
  • chillicream/hotchocolateالصورة الرمزية لـ ChilliCream

    ChilliCream/hotchocolate

    5,713عرض على GitHub↗

    HotChocolate is a GraphQL server implementation for .NET that handles queries, mutations, and subscriptions over HTTP. It provides code-first schema generation directly from C# classes and attributes, keeping the schema and business logic in sync without manual type definitions. The project also includes a GraphQL gateway that composes multiple GraphQL and REST endpoints into a single unified schema, along with a GraphQL IDE for exploring, testing, and debugging GraphQL APIs interactively. The project distinguishes itself through its comprehensive tooling ecosystem, which includes a GraphQL c

    Caches fetched entities in memory so subsequent requests for the same key return instantly.

    C#
    عرض على GitHub↗5,713
  • springside/springside4الصورة الرمزية لـ springside

    springside/springside4

    5,652عرض على GitHub↗

    SpringSide 4 is an enterprise Java reference architecture and utility library built on the Spring Framework. It provides a pragmatic, best-practice application stack for building RESTful web services, web applications, and data access layers, along with a curated collection of high-performance utility classes for common operations like text, date, collection, reflection, concurrency, and I/O handling. The project distinguishes itself by combining a complete reference application scaffold with production-oriented infrastructure. It includes a JPA-based data access layer that automatically tran

    Implements second-level caching of entities by primary key for faster retrieval.

    Java
    عرض على GitHub↗5,652
  • ravendb/ravendbالصورة الرمزية لـ ravendb

    ravendb/ravendb

    3,961عرض على GitHub↗

    RavenDB is a multi-model NoSQL document database designed for high-performance, ACID-compliant data storage. It persists structured information as schema-flexible JSON documents and utilizes a unit-of-work session pattern to track entity changes and batch modifications into atomic transactions. The platform is built on a distributed architecture that supports horizontal scaling through sharding and ensures high availability via multi-node, master-to-master cluster replication. The database distinguishes itself through a self-optimizing query engine that automatically creates and maintains ind

    Provides a session-scoped cache that maps entity identifiers to object instances to ensure referential integrity within a single unit of work.

    C#csharpdatabasedocument-database
    عرض على GitHub↗3,961

استكشف الوسوم الفرعية

  • First-Level CachingA session-scoped cache that maps entity identifiers to object instances to ensure referential integrity within a single unit of work. **Distinct from Entity Second-Level Caching:** Distinct from Entity Second-Level Caching: targets the short-lived session scope rather than the shared cross-session store.
  • Primary Key CachesCaches that store entity objects by their primary key for faster retrieval. **Distinct from Entity Second-Level Caching:** Distinct from Entity Second-Level Caching: focuses on caching by primary key specifically, not general second-level entity caching.