python multiprocessing manager - shared list - connection reset by peer 104
问题 One parent launch two process A, B with python multiprocessing that should run in parallel. Share two lists with Multiprocessing.Manager list_1 list_2 A write to list_1 that is passed as parameter to A, inside A list_1 became list_W. A read from a list_2 that is passed as parameter to A, inside A list_2 became list_R B write to list_2 that is passed as parameter to B, inside B list_2 became list_W. B read from a list_1 that is passed as parameter to B, inside B list_1 became list_R if I call