summaryrefslogtreecommitdiffstats
path: root/libraries/async/README
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/async/README')
-rw-r--r--libraries/async/README13
1 files changed, 13 insertions, 0 deletions
diff --git a/libraries/async/README b/libraries/async/README
new file mode 100644
index 0000000000..ac6579546a
--- /dev/null
+++ b/libraries/async/README
@@ -0,0 +1,13 @@
+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.