2 مستودعات
Mechanisms for capturing and forwarding errors from isolated worker processes to the main server process.
Distinct from Error Handling: Focuses on the inter-process transport of errors from workers to server, rather than general application-level error handling patterns.
Explore 2 awesome GitHub repositories matching software engineering & architecture · Worker Process Error Reporting. Refine with filters or upvote what's useful.
RoadRunner is a high-performance application server and process manager designed to serve PHP applications using a persistent worker model. It eliminates bootload overhead and initialization time by keeping application processes alive between requests, acting as a protocol-agnostic proxy that routes traffic to a pool of supervised workers. The server is built with a plugin-based modular architecture, allowing it to be extended with custom Go plugins and compiled into tailored binaries. It distinguishes itself by providing a unified execution model for a wide array of communication protocols,
Reports application failures by flushing messages from worker processes to the server's standard error stream.
threads.js is a JavaScript worker thread library and asynchronous task orchestrator designed to offload CPU-intensive tasks to background threads. It functions as a cross-platform worker pool and a TypeScript worker runner that automatically transpiles and executes TypeScript files within separate threads. The project distinguishes itself by providing a unified worker API that allows for cross-platform execution across different JavaScript environments. It includes a specialized worker data serialization tool to pass complex class instances and binary data between threads, and supports inlini
Forwards errors from a worker thread to the main thread's promise chain including the original stack trace.