3 مستودعات
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.
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.
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.
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.