Try fix worker pool link, again

single_func_example
Tyler Goodlet 2021-02-27 16:08:44 -05:00
parent 3766731de5
commit c07a5f6e11
1 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ pool thing?"*.
tree you can imagine; a "worker pool" pattern is a trivial special
case.
We have a `full re-implementation <worker_pool>`_ of the std-lib's
We have a `full worker pool re-implementation`_ of the std-lib's
``concurrent.futures.ProcessPoolExecutor`` example for reference.
You can run it like so (from this dir) to see the process tree in
@ -222,7 +222,7 @@ This uses no extra threads, fancy semaphores or futures; all we need
is ``tractor``'s IPC!
.. _worker_pool: https://github.com/goodboy/tractor/blob/master/examples/parallelism/concurrent_actors_primes.py
.. _full worker pool re-implementation: https://github.com/goodboy/tractor/blob/master/examples/parallelism/concurrent_actors_primes.py
Install
-------