awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 रिपॉजिटरी

Awesome GitHub RepositoriesLazy Database Loading

Techniques for loading database segments from storage only upon specific request to optimize startup.

Distinct from Database Snapshot Restorations: None of the candidates cover the specific concept of lazy loading data during a database restoration process.

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

Awesome Lazy Database Loading GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • tonsky/datascripttonsky का अवतार

    tonsky/datascript

    5,767GitHub पर देखें↗

    Datascript is an immutable, in-memory state store and schema-based triple store. It manages application state as a versioned database, storing data as immutable facts consisting of an entity, attribute, value, and transaction. The project provides a logic engine for executing Datalog queries with support for implicit joins, recursive rules, and negation. It also features a declarative pull API for retrieving deeply nested entity graphs and related data structures. The database enforces data integrity through schema-driven constraints and attribute types. It supports atomic transactions, plug

    Improves startup time by loading data from storage only when accessed during a query.

    Clojure
    GitHub पर देखें↗5,767
  • baomidou/dynamic-datasourcebaomidou का अवतार

    baomidou/dynamic-datasource

    5,177GitHub पर देखें↗

    This project is a dynamic datasource manager for Spring Boot designed to handle multiple database connections and switch between them at runtime. It provides a system for managing database read-write splitting, coordinating distributed transactions across disparate databases, and updating connection settings without requiring an application restart. The framework differentiates itself through its ability to route traffic based on user sessions or headers to support multi-tenant architectures. It also includes a mechanism for encrypting sensitive database credentials within configuration files

    Postpones the creation of database connection pools until the first request to reduce startup time.

    Javadatasourcedistributed-transactiondynamic-datasource
    GitHub पर देखें↗5,177
  • objectbox/objectbox-javaobjectbox का अवतार

    objectbox/objectbox-java

    4,612GitHub पर देखें↗

    ObjectBox Java, Java और Android के लिए एक एम्बेडेड NoSQL ऑब्जेक्ट डेटाबेस है जो रिलेशनल मैपिंग के बिना डेटा ऑब्जेक्ट्स को सीधे स्टोर करता है। यह एक नेटिव-प्रोसेस स्टोरेज इंजन के रूप में कार्य करता है, जो एप्लिकेशंस को प्लेन Java या Kotlin क्लासेस को एंटिटीज के रूप में पर्सिस्ट करने की अनुमति देता है। यह प्रोजेक्ट एक ऑन-डिवाइस वेक्टर डेटाबेस क्षमता के साथ खुद को अलग करता है, जो अनुमानित निकटतम पड़ोसी खोज (approximate nearest neighbor searches) और सिमेंटिक समानता प्रश्नों को करने के लिए HNSW इंडेक्स का उपयोग करता है। इसमें डेटा ऑब्जेक्ट्स, स्कीमा, और डिपेंडेंसी डायग्राम्स को विज़ुअलाइज़ करने के लिए स्थानीय रूप से होस्ट किया गया वेब-आधारित ब्राउज़र भी शामिल है। डेटाबेस ACID-अनुपालन परमाणु लेनदेन, रीयल-टाइम अवलोकनों के लिए रिएक्टिव डेटा स्ट्रीम्स, और क्रॉस-प्लेटफॉर्म डेटा सिंक्रोनाइज़ेशन सहित डेटा प्रबंधन क्षमताओं की एक विस्तृत श्रृंखला को कवर करता है। इसकी स्टोरेज सतह लेज़ी लोडिंग, प्रॉपर्टी-आधारित फ़िल्टरिंग, और कैशिंग या स्वचालित परीक्षण के लिए मेमोरी में डेटा स्टोर को इनिशियलाइज़ करने की क्षमता के साथ ऑब्जेक्ट-रिलेशन मैपिंग का समर्थन करती है।

    Provides lazy-loaded one-to-one relations using proxies to optimize initial query time and memory.

    Javaandroiddatabaseedge
    GitHub पर देखें↗4,612
  • realm/realm-kotlinrealm का अवतार

    realm/realm-kotlin

    1,092GitHub पर देखें↗

    Realm Kotlin is a local, object-oriented NoSQL database engine designed for Kotlin Multiplatform applications. It enables developers to persist structured application data directly as objects, eliminating the need for traditional relational table structures while ensuring information remains accessible during offline periods. The library distinguishes itself through a compiler-plugin-based architecture that maps standard language classes to database models at compile time. It utilizes zero-copy memory mapping and a lazy-loading query engine to manage data efficiently, while a shared C++ core

    Retrieves database records on demand to avoid loading entire result sets into application memory.

    Kotlinandroidandroid-librarydatabase
    GitHub पर देखें↗1,092
  1. Home
  2. Data & Databases
  3. Lazy Database Loading

सब-टैग एक्सप्लोर करें

  • Lazy Connection InitializationPostponing the creation of database connection pools until the first request for a specific source is received. **Distinct from Lazy Database Loading:** Specifically targets connection pool initialization, whereas Lazy Database Loading often refers to loading data segments from disk.
  • Lazy-Loaded Object RelationsTechniques for deferring the loading of related entities in an object database. **Distinct from Lazy Database Loading:** Specific to object-to-object relations rather than general database segments or BLOBs.