Description
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 libev as a high-performance event reactor that provides timers, I/O watchers and other asynchronous event primitives.
Polyphony alternatives and similar gems
Based on the "Concurrency" category.
Alternatively, view Polyphony alternatives based on common mentions on social networks and blogs.
-
Concurrent Ruby
Modern concurrency tools including agents, futures, promises, thread pools, supervisors, and more. Inspired by Erlang, Clojure, Scala, Go, Java, JavaScript, and classic concurrency patterns. -
EventMachine
EventMachine: fast, simple event-processing library for Ruby programs -
render_async
render_async lets you include pages asynchronously with AJAX
Clean code begins in your IDE with SonarLint
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Polyphony or a related project?
README
Polyphony
Fine-Grained Concurrency for Ruby
DOCS | [EXAMPLES](examples)
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.
What is Polyphony
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.
Features
- Co-operative scheduling of concurrent tasks using Ruby fibers.
- High-performance event reactor for handling I/O events and timers.
- Natural, sequential programming style that makes it easy to reason about concurrent code.
- Abstractions and constructs for controlling the execution of concurrent code: supervisors, cancel scopes, throttling, resource pools etc.
- Code can use native networking classes and libraries, growing support for
third-party gems such as
pg
andredis
. - Use stdlib classes such as
TCPServer
,TCPSocket
andOpenSSL::SSL::SSLSocket
. - Competitive performance and scalability characteristics, in terms of both throughput and memory consumption.
Documentation
The complete documentation for Polyphony could be found on the Polyphony website.
Contributing to Polyphony
Issues and pull requests will be gladly accepted. Please use the Polyphony git repository as your primary point of departure for contributing.
*Note that all licence references and agreements mentioned in the Polyphony README section above
are relevant to that project's source code only.