parallelism.md
July 15, 2021 ยท View on GitHub
Bookmarks tagged [parallelism]
www.codever.land/bookmarks/t/parallelism
Celluloid
Actor-based concurrent object framework for Ruby.
- tags: ruby, concurrency, parallelism
Concurrent 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.
- tags: ruby, concurrency, parallelism
- :octocat: source code
EventMachine
https://github.com/eventmachine/eventmachine
An event-driven I/O and lightweight concurrency library for Ruby.
- tags: ruby, concurrency, parallelism
- :octocat: source code
forkoff
https://github.com/ahoward/forkoff
brain-dead simple parallel processing for ruby.
- tags: ruby, concurrency, parallelism
- :octocat: source code
Parallel
https://github.com/grosser/parallel
Run any code in parallel Processes (> use all CPUs) or Threads (> speedup blocking operations).
- tags: ruby, concurrency, parallelism
- :octocat: source code
concurrent.futures
https://docs.python.org/3/library/concurrent.futures.html
(Python standard library) A high-level interface for asynchronously executing callables.
- tags: python, concurrency, parallelism
multiprocessing
https://docs.python.org/3/library/multiprocessing.html
(Python standard library) Process-based parallelism.
- tags: python, concurrency, parallelism
eventlet
Asynchronous framework with WSGI support.
- tags: python, concurrency, parallelism
gevent
A coroutine-based Python networking library that uses greenlet.
- tags: python, concurrency, parallelism
uvloop
https://github.com/MagicStack/uvloop
Ultra fast implementation of asyncio event loop on top of libuv.
- tags: python, concurrency, parallelism
- :octocat: source code
scoop
https://github.com/soravux/scoop
Scalable Concurrent Operations in Python.
- tags: python, concurrency, parallelism
- :octocat: source code