awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 repositorios

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

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • apple/containerAvatar de apple

    apple/container

    37,726Ver en 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
    Ver en GitHub↗37,726
  • nvim-lua/kickstart.nvimAvatar de nvim-lua

    nvim-lua/kickstart.nvim

    30,856Ver en 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
    Ver en GitHub↗30,856
  • ranaroussi/yfinanceAvatar de ranaroussi

    ranaroussi/yfinance

    21,639Ver en 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
    Ver en GitHub↗21,639
  • scipy/scipyAvatar de scipy

    scipy/scipy

    14,474Ver en 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
    Ver en GitHub↗14,474
  • doctrine/commonAvatar de doctrine

    doctrine/common

    5,807Ver en 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
    Ver en GitHub↗5,807
  1. Home
  2. Software Engineering & Architecture
  3. Lazy Loading Patterns

Explorar subetiquetas

  • 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.