Answer the question
In order to leave comments, you need to log in
How to solve the problem of creating-closing processes?
There is
from multiprocessing import Pool
def execute(album):
pool = Pool(processes=8)
result = pool.map(execute_the_photo, album)
pool.close()
pool.join()
*save to file*
for album in albums:
execute(album)
Answer the question
In order to leave comments, you need to log in
Google: "ProcessPoolExecutor python"
You create a pool at the beginning of work and it's done
Try prefork
www.michurin.net/servers/prefork-server.html
In general, there are several options for the server
1 thread
2 fork (what you have)
3 prefork (thread is created before use, dynamic control of the number of processes is possible)
4 thred
5 async
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question