Polyphony | pΙΛlΙͺf(Ι)ni |
Music the style of simultaneously combining a number of parts, each forming an individual melody and harmonizing with each other.
Programming a Ruby gem for concurrent programming focusing on performance and developer happiness.
Polyphony is a library for building concurrent applications in Ruby. Polyphony harnesses the power of Ruby fibers to provide a cooperative, sequential coroutine-based concurrency model. Under the hood, Polyphony uses io_uring or libev to maximize I/O performance.
- Ruby fibers as the main unit of concurrency.
- Structured concurrency coupled with robust exception handling.
- Message passing between fibers, even across threads!
- High-performance I/O using the core Ruby I/O classes and io_uring with support for advanced I/O patterns.
- Installation
- Overview
- Tutorial
- All About Cancellation: How to Stop Concurrent Operations
- Advanced I/O with Polyphony
- Cheat-Sheet
- FAQ
- Concurrency the Easy Way
- How Fibers are Scheduled
- Exception Handling
- Extending Polyphony
- Polyphony's Design
For examples of specific use cases you can consult the bundled examples in Polyphony's GitHub repository.
Issues and pull requests will be gladly accepted. Please use the Polyphony git repository as your primary point of departure for contributing.