|
|
|
|
|
by iooi
2907 days ago
|
|
I'm not sure you understand how the GIL works in Python. If you're using multiprocessing, there's no locking across the code executing on each core. Also, if you're writing to the same file from four processes, you're going to need locking. |
|
Am I mistaken?