forked from goodboy/tractor
Fix code indent and worker pool link
parent
8ee9007798
commit
ab192741ce
|
@ -149,7 +149,7 @@ pool thing?".
|
||||||
``tractor`` is built to handle any SC process tree you can
|
``tractor`` is built to handle any SC process tree you can
|
||||||
imagine; the "worker pool" pattern is a trivial special case.
|
imagine; the "worker pool" pattern is a trivial special case.
|
||||||
|
|
||||||
We have a `full re-implementation <concurrent_actors_primes>`_ of the std-lib's
|
We have a `full re-implementation <worker_pool>`_ of the std-lib's
|
||||||
``concurrent.futures.ProcessPoolExecutor`` example for reference.
|
``concurrent.futures.ProcessPoolExecutor`` example for reference.
|
||||||
|
|
||||||
You can run it like so (from this dir) to see the process tree in
|
You can run it like so (from this dir) to see the process tree in
|
||||||
|
@ -163,7 +163,7 @@ This uses no extra threads, fancy semaphores or futures; all we need
|
||||||
is ``tractor``'s IPC!
|
is ``tractor``'s IPC!
|
||||||
|
|
||||||
|
|
||||||
.. _concurrent_actors_primes: https://github.com/goodboy/tractor/examples/parallelism/concurrent_actors_primes.py
|
.. _worker_pool: https://github.com/goodboy/tractor/blob/master/examples/parallelism/concurrent_actors_primes.py
|
||||||
|
|
||||||
Install
|
Install
|
||||||
-------
|
-------
|
||||||
|
|
Loading…
Reference in New Issue