Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
doc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

async

Async aims to make writing asynchronous processing easier. It provides a task-graph with interdependent tasks that communicate using blocking channels, allowing to 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 with custom c extensions which release the GIL, true concurrency can be obtained as well.

REQUIREMENTS

  • 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 STATUS

Build Status Coverage Status

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.

SOURCE

The source is available in a git repository at gitorious and github:

git://github.com/gitpython-developers/async.git

Run the tests with cd async nosetests

MAILING LIST

http://groups.google.com/group/git-python

ISSUE TRACKER

https://github.com/gitpython-developers/async/issues

LICENSE

New BSD License

About

Distribute interdependent tasks to 0 or more threads

Resources

License

Packages

No packages published
You can’t perform that action at this time.