Process communication of Python's Multiprocessing
问题 I've learned about Python multiprocess's Pipes/Queues/Shared ctypes Objects/Managers, and I want to compare them with Linux's anonymous pipes, named pipes, shared memory, socket, and so on. I now have the following questions The pipes and queue modules of Python's multiprocessing are based on anonymous pipes. Does it provide named pipes? Does Python multiprocessing.sharedctypes support independent process communication? I think it only supports father and child process or brotherly process