Hacker News new | ask | show | jobs
by dokument 3002 days ago
Would this allow separate GC'ng for each task?
1 comments

Only ProcessPoolExecutor[1]. If you use a thread pool or async io it will be single python process/GIL.

[1] -https://docs.python.org/3/library/concurrent.futures.html#pr...