Gems
yaroslav/kino: A high-performance Ractor web server for Ruby 4.0+: Rack 3-based, with a Rust Tokio/Hyper front-end and Ractor-parallel Ruby workers and threaded fallback mode.
Ruby threads cannot run Ruby code in parallel, so production setups fork a process per core and pay for each copy in memory. Kino runs your code on every core in one small process. A Rust (tokio + hyper) front-end owns the network, parallel Ractor...
digital-fabric/uringmachine: A lean mean io_uring machine
UringMachine is a Ruby gem for building fiber-based concurrent Ruby apps running on Linux and using io_uring for performing I/O. UringMachine provides a low-level API for performing concurrent I/O, as well as a full-featured Fiber::Scheduler imple...