awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 dépôts

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

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • tj/coT

    tj/co

    11,856Voir sur 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
    Voir sur GitHub↗11,856
  • microsoft/napajsAvatar de Microsoft

    Microsoft/napajs

    9,180Voir sur 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++
    Voir sur GitHub↗9,180
  • gevent/geventAvatar de gevent

    gevent/gevent

    6,440Voir sur 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
    Voir sur GitHub↗6,440
  1. Home
  2. Software Engineering & Architecture
  3. Task Scheduling
  4. Parallel Task Executors
  5. Parallel Task Spawning
  6. Recursive Parallel Distribution

Explorer les sous-tags

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