Remote python dispatcher without going through IP stack

The Python multiprocessing package supports the remote manager function where one python process can IPC with another process, however from their example it seems that this should go through the IP OS stack.
Is there a way to use the remote manager without going through the IP stack, assuming that these two processes are local, and thus accelerated?

0
source share

Source: https://habr.com/ru/post/1385774/


All Articles