|
|
|
|
|
by sgarland
406 days ago
|
|
Just use multiprocessing. If each job is independent and you aren’t trying to spread it out over multiple workers, it seems much easier and less risky to spawn a worker for each job. Use SharedMemory to pass the data back and forth. |
|