1 dépôt
Creating lightweight execution units within a pool to reduce operating system overhead.
Distinct from Coroutine Spawning: Covers fiber spawning specifically rather than coroutines or OS threads
Explore 1 awesome GitHub repository matching software engineering & architecture · Fiber Spawning. Refine with filters or upvote what's useful.
Quasar is a JVM concurrency framework that implements the actor model and a lightweight thread library. It provides isolated execution units that communicate via asynchronous message passing to eliminate shared mutable state. The project distinguishes itself through a distributed actor system capable of operating across multiple cluster nodes with location-transparent registries and actor state migration. It utilizes a work-stealing fiber scheduler to manage millions of lightweight threads, allowing tasks to suspend during non-blocking I/O operations without stalling underlying system threads
Spawns memory-efficient fibers within a worker pool to minimize system overhead during task creation.