awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索Open-source alternativesSelf-hosted software博客网站地图
项目关于How we rank媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
awesome-repositories.com博客
分类

3 个仓库

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

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • tj/coT

    tj/co

    11,856在 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
    在 GitHub 上查看↗11,856
  • microsoft/napajsMicrosoft 的头像

    Microsoft/napajs

    9,180在 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++
    在 GitHub 上查看↗9,180
  • gevent/geventgevent 的头像

    gevent/gevent

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

探索子标签

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