码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-08-15 13:14:18      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:style   pytho   class   list   tip   item   join   div   event   

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()

标签:style   pytho   class   list   tip   item   join   div   event   

原文地址:https://www.cnblogs.com/fdzwdt/p/11357195.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!