Skip to content

Latest commit

 

History

History
76 lines (64 loc) · 3.97 KB

parallelism.md

File metadata and controls

76 lines (64 loc) · 3.97 KB

Bookmarks tagged [parallelism]

http://celluloid.io

Actor-based concurrent object framework for Ruby.


https://github.com/ruby-concurrency/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.


https://github.com/eventmachine/eventmachine

An event-driven I/O and lightweight concurrency library for Ruby.


https://github.com/ahoward/forkoff

brain-dead simple parallel processing for ruby.


https://github.com/grosser/parallel

Run any code in parallel Processes (> use all CPUs) or Threads (> speedup blocking operations).


https://docs.python.org/3/library/concurrent.futures.html

(Python standard library) A high-level interface for asynchronously executing callables.


https://docs.python.org/3/library/multiprocessing.html

(Python standard library) Process-based parallelism.


http://eventlet.net/

Asynchronous framework with WSGI support.


http://www.gevent.org/

A coroutine-based Python networking library that uses greenlet.


https://github.com/MagicStack/uvloop

Ultra fast implementation of asyncio event loop on top of libuv.


https://github.com/soravux/scoop

Scalable Concurrent Operations in Python.