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

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

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

5 مستودعات

Awesome GitHub RepositoriesLazy Loading Patterns

Techniques for deferring the initialization of heavy objects until they are explicitly required.

Distinguishing note: No candidates provided; this is a performance-oriented architectural pattern.

Explore 5 awesome GitHub repositories matching software engineering & architecture · Lazy Loading Patterns. Refine with filters or upvote what's useful.

Awesome Lazy Loading Patterns GitHub Repositories

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

    apple/container

    37,726عرض على GitHub↗

    This project serves as a technical educational resource and software implementation example focused on dependency injection architecture and containerized application packaging. It provides a centralized framework for managing the lifecycle and configuration of application components, allowing objects to receive their dependencies from a registry rather than creating them internally. The project distinguishes itself by offering a type-safe service resolution mechanism that uses language-level information to map abstract interfaces to concrete implementations. By utilizing an inversion of cont

    Optimizes performance by deferring the creation of heavy objects until they are required.

    Swift
    عرض على GitHub↗37,726
  • nvim-lua/kickstart.nvimالصورة الرمزية لـ nvim-lua

    nvim-lua/kickstart.nvim

    30,856عرض على GitHub↗

    Kickstart.nvim is a foundational boilerplate designed for building personalized Neovim environments. It provides a structured framework that uses Lua scripting to organize editor settings and custom logic, serving as a starting point for users to develop their own text editing workflows. The project distinguishes itself by integrating a centralized plugin manager that automates the installation, versioning, and lazy-loading of extensions. This orchestration minimizes startup latency while maintaining a declarative approach to managing the lifecycle of editor tools. The framework supports mod

    Implements lazy-loading patterns to defer plugin initialization and minimize editor startup latency.

    Lua
    عرض على GitHub↗30,856
  • ranaroussi/yfinanceالصورة الرمزية لـ ranaroussi

    ranaroussi/yfinance

    21,639عرض على GitHub↗

    This library is a Python-based tool for retrieving historical and real-time financial market data from public sources. It functions as a programmatic interface for downloading stock prices, dividends, financial statements, and corporate calendars, allowing users to perform automated research and analysis on various market assets. The project distinguishes itself by structuring retrieved financial time series directly into tabular data frames, which facilitates mathematical analysis and manipulation of market metrics. It supports efficient data retrieval through multi-threaded batch downloadin

    Defines asset attributes as dynamic properties that fetch remote data only when accessed to optimize performance.

    Pythonfinancial-datafix-yahoo-financemarket-data
    عرض على GitHub↗21,639
  • scipy/scipyالصورة الرمزية لـ scipy

    scipy/scipy

    14,474عرض على GitHub↗

    SciPy is a scientific computing library for Python that provides a comprehensive collection of mathematical algorithms and numerical tools for research and engineering. It functions as a high-performance numerical analysis framework, bridging high-level Python code with compiled C and Fortran routines to execute complex computations at hardware speeds. The library is built upon array-based data structures that utilize strided memory layouts to enable efficient data manipulation and slicing. By employing vectorized operation dispatch and linking to optimized hardware-specific linear algebra li

    Defers the initialization of heavy scientific sub-packages until they are explicitly requested to reduce memory footprint.

    Pythonalgorithmsclosemberpython
    عرض على GitHub↗14,474
  • doctrine/commonالصورة الرمزية لـ doctrine

    doctrine/common

    5,807عرض على GitHub↗

    Doctrine Common is a set of shared libraries that provide foundational capabilities for parsing PHP docblock annotations, managing event-driven communication, and handling typed object collections. At its core, it includes a docblock annotation parser that reads structured metadata from PHP docblock comments, enabling configuration for object-relational mapping and validation rules. It also offers a typed collection abstraction with lazy-loading support, allowing efficient management of object groups through array-like operations. The library extends these capabilities with an event managemen

    Defers loading of collection elements until accessed, using a proxy pattern for performance with large datasets.

    PHP
    عرض على GitHub↗5,807
  1. Home
  2. Software Engineering & Architecture
  3. Lazy Loading Patterns

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

  • Collection ProxiesDefers loading of collection elements until accessed, using a proxy pattern to improve performance with large datasets. **Distinct from Lazy Loading Patterns:** Distinct from Lazy Loading Patterns: specifically applies lazy loading to collections via proxy objects, not general object initialization.