- Notifications
You must be signed in to change notification settings - Fork9
Distribute interdependent tasks to 0 or more threads
License
gitpython-developers/async
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Async aims to make writing asynchronous processing easier. It provides a task-graphwith interdependent tasks that communicate using blocking channels, allowingto delay actual computations until items are requested.Tasks will automatically be distributed among 0 or more threads for the actual computation.
Even though the GIL effectively prevents true concurrency, operations which block,such as file IO, can be sped up with it already. In conjunction withcustom c extensions which release the GIL, true concurrency can be obtained as well.
- Python Nose - for running the tests
Interpreter versions:
- 2.6
- 2.7
- 3.X
- NOTE: it doesn't seem to work deterministically in this version, and must be avoided
Development was discontinued, as there are much better alternatives, like zeromq.
Async is considered useless (by me, the author) as the GIL will prevent anything good from happening (it gets slower instead of faster in multi-threaded mode ;)). Please do not use this project, which can be considered nothing more than an exercise I did years ago.
The source is available in a git repository at gitorious and github:
git://github.com/gitpython-developers/async.git
Run the tests withcd asyncnosetests
http://groups.google.com/group/git-python
https://github.com/gitpython-developers/async/issues
New BSD License
About
Distribute interdependent tasks to 0 or more threads
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors5
Uh oh!
There was an error while loading.Please reload this page.