Live data from Hacker News

Python Concurrency Decorators

github.com

1–10 of 51 posts

Re: Python Concurrency Decorators

#8
A couple of things offhand:

- It has Python 2 and 3 support

- It's a wrapper for the Python built-in "multiprocessing" library

- It spreads out work over all cores (so the abstraction hides the ability to control the pool)

Seems like a great way to get your feet wet with multiprocessing in Python, but it likely has limited use in production...although certain infrastructures like resource limited containers might be able to accommodate it.

Post reply on HN