awesome-repositories.com

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

ExplorarBúsquedas curadasOpen-source alternativesSelf-hosted softwareBlogMapa del sitio
ProyectoAcerca deHow we rankPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
awesome-repositories.comBlog
Categorías

3 repositorios

Awesome GitHub RepositoriesRecursive Parallel Distribution

Distributing recursive operations across multiple threads to avoid deadlocks during sub-task completion.

Distinct from Parallel Task Spawning: Focuses specifically on recursive workload distribution via promises, whereas the candidate is generic scoped spawning.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Recursive Parallel Distribution. Refine with filters or upvote what's useful.

Awesome Recursive Parallel Distribution GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • tj/coT

    tj/co

    11,856Ver en GitHub↗

    co is a JavaScript generator control flow library and non-blocking workflow engine. It manages asynchronous logic by using generators and promises to simulate a synchronous coding style. The project transforms generator functions into standard functions that return promises, ensuring compatibility with non-generator interfaces. It also functions as a promise-based asynchronous orchestrator that executes multiple operations concurrently through the recursive resolution of nested promise collections. The library provides high-level primitives for asynchronous flow control and non-blocking work

    Resolves nested arrays or objects of promises recursively to ensure complete parallel task execution.

    JavaScript
    Ver en GitHub↗11,856
  • microsoft/napajsAvatar de Microsoft

    Microsoft/napajs

    9,180Ver en GitHub↗

    Napajs is an embeddable JavaScript engine and multi-threaded runtime designed to be integrated directly into other software applications as a component. It serves as a parallel computation framework that allows JavaScript code to execute across multiple threads, bypassing the standard single-threaded event loop limitation to handle CPU-intensive tasks. The runtime is distinguished by its ability to load and execute modules from the NPM ecosystem and its pluggable execution environment. This architecture allows for custom implementations of memory allocation, system logging, and performance me

    Distributes recursive operations across multiple threads using promises to prevent deadlocks during sub-task completion.

    C++
    Ver en GitHub↗9,180
  • gevent/geventAvatar de gevent

    gevent/gevent

    6,440Ver en GitHub↗

    Gevent is a Python coroutine concurrency library and asynchronous task manager designed for high-concurrency I/O tasks. It provides a cooperative networking framework for building asynchronous TCP, UDP, and HTTP servers, as well as a WSGI web server implementation for hosting web applications. The project is distinguished by its standard library monkey-patching tool, which replaces blocking synchronous functions with cooperative versions to enable asynchronous behavior in third-party code. This allows for a cooperative multitasking workflow where the system yields execution during I/O waits t

    Distributes work across thread pools using mapping methods that support recursive calls and exception propagation.

    Pythonasynciocoroutinesgreenlet
    Ver en GitHub↗6,440
  1. Home
  2. Software Engineering & Architecture
  3. Task Scheduling
  4. Parallel Task Executors
  5. Parallel Task Spawning
  6. Recursive Parallel Distribution

Explorar subetiquetas

  • Recursive Promise DistributionDistributing recursive operations across asynchronous promise collections to ensure all sub-tasks complete. **Distinct from Recursive Parallel Distribution:** Focuses on promise-based recursion rather than thread-level distribution or data-parallelism.