|
|
|
|
|
by senkora
759 days ago
|
|
> multiprocessing with shared memory if you need to use CPU resources in parallel This is actually pretty powerful. I personally prefer it for most purposes, because it restricts the possibility of data races to only the shared memory regions. It's a little like an "unsafe block" of memory with respect to data races. |
|