mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
d10b0ed9c2
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
13 lines
549 B
Text
13 lines
549 B
Text
Async aims to make writing asyncronous 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 conjuction with custom c extensions which release the GIL, true
|
|
concurrency can be obtained as well.
|