Apache Dubbo has the injvm method of communication, which can avoid the latency caused by the network, and also does not occupy the local port, which is a more convenient way of RPC communication for testing and local verification. I recently saw containerd’s code and found that it has similar requirements. But using ip port communication, there may be port conflict; using unix socket, there may be path conflict. I