python 多进程共享全局变量之Manager()

Posted fdzwdt

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 多进程共享全局变量之Manager()相关的知识,希望对你有一定的参考价值。

Manager支持的类型有list,dict,Namespace,Lock,RLock,Semaphore,BoundedSemaphore,Condition,Event,Queue,Value和Array。

但当使用Manager处理list、dict等可变数据类型时,需要注意一个陷阱,即Manager对象无法监测到它引用的可变对象值的修改,需要通过触发__setitem__方法来让它获得通知。

而触发__setitem__方法比较直接的办法就是增加一个中间变量,如同在C语言中交换两个变量的值一样:int a=1;int b=2;int tmp=a;a=b;b=tmp;

python例子:

 1 from multiprocessing import Manager,Process
 2 
 3 def test_manager():
 4 
 5   m[0][id] = 2
 6 
 7 m = Manager().list()
 8 
 9 m.append("id":1)
10 
11 p = Process(target=test_manager)
12 
13 p.start()
14 
15 p.join()
16 
17 print m[0]

执行结果:

"id":1

并未改变

修改test_manager()

def test_manager():
    tmp = m[0]
    tmp"id" = 2
    m[0] = tmp

此时执行结果即为:

"id":2

另外,对于Process需注意对象要可被序列化pickle

 

以上是关于python 多进程共享全局变量之Manager()的主要内容,如果未能解决你的问题,请参考以下文章

Python核心编程总结(五多任务编程之进程与线程)

Python多进程(multiprocessing)共享变量

Python 多进程和多线程 的使用

Python多进程

IPC之共享内存

python多进程