Having determined that the time spent loading libraries can add up in real-world, it's worth only documenting the faster pattern for Python thread pools:
- Create one
ThreadpoolController
- Re-use it in the threads
It may also be worth documenting while I'm at it the limits of having a single ThreadpoolController: not noticing the existence of new libraries, usually due to later imports.
Having determined that the time spent loading libraries can add up in real-world, it's worth only documenting the faster pattern for Python thread pools:
ThreadpoolControllerIt may also be worth documenting while I'm at it the limits of having a single
ThreadpoolController: not noticing the existence of new libraries, usually due to later imports.