首頁 後端開發 Python教學 探究Python多进程编程下线程之间变量的共享问题

探究Python多进程编程下线程之间变量的共享问题

Jun 06, 2016 am 11:15 AM
python

 1、问题:

群中有同学贴了如下一段代码,问为何 list 最后打印的是空值?
 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

from multiprocessing import Process, Manager

import os

  

manager = Manager()

vip_list = []

#vip_list = manager.list()

  

def testFunc(cc):

  vip_list.append(cc)

  print 'process id:', os.getpid()

  

if __name__ == '__main__':

  threads = []

  

  for ll in range(10):

    t = Process(target=testFunc, args=(ll,))

    t.daemon = True

    threads.append(t)

  

  for i in range(len(threads)):

    threads[i].start()

  

  for j in range(len(threads)):

    threads[j].join()

  

  print "------------------------"

  print 'process id:', os.getpid()

  print vip_list

登入後複製

其实如果你了解 python 的多线程模型,GIL 问题,然后了解多线程、多进程原理,上述问题不难回答,不过如果你不知道也没关系,跑一下上面的代码你就知道是什么问题了。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

python aa.py

process id: 632

process id: 635

process id: 637

process id: 633

process id: 636

process id: 634

process id: 639

process id: 638

process id: 641

process id: 640

------------------------

process id: 619

[]

登入後複製

将第 6 行注释开启,你会看到如下结果:

1

2

3

4

5

6

7

8

9

10

11

12

13

process id: 32074

process id: 32073

process id: 32072

process id: 32078

process id: 32076

process id: 32071

process id: 32077

process id: 32079

process id: 32075

process id: 32080

------------------------

process id: 32066

[3, 2, 1, 7, 5, 0, 6, 8, 4, 9]

登入後複製

2、python 多进程共享变量的几种方式:
(1)Shared memory:
Data can be stored in a shared memory map using Value or Array. For example, the following code

http://docs.python.org/2/library/multiprocessing.html#sharing-state-between-processes

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

from multiprocessing import Process, Value, Array

  

def f(n, a):

  n.value = 3.1415927

  for i in range(len(a)):

    a[i] = -a[i]

  

if __name__ == '__main__':

  num = Value('d', 0.0)

  arr = Array('i', range(10))

  

  p = Process(target=f, args=(num, arr))

  p.start()

  p.join()

  

  print num.value

  print arr[:]

登入後複製

结果:

1

2

3.1415927

[0, -1, -2, -3, -4, -5, -6, -7, -8, -9]

登入後複製

(2)Server process:

A manager object returned by Manager() controls a server process which holds Python objects and allows other processes to manipulate them using proxies.
A manager returned by Manager() will support types list, dict, Namespace, Lock, RLock, Semaphore, BoundedSemaphore, Condition, Event, Queue, Value and Array.
代码见开头的例子。

http://docs.python.org/2/library/multiprocessing.html#managers
3、多进程的问题远不止这么多:数据的同步

看段简单的代码:一个简单的计数器:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

from multiprocessing import Process, Manager

import os

  

manager = Manager()

sum = manager.Value('tmp', 0)

  

def testFunc(cc):

  sum.value += cc

  

if __name__ == '__main__':

  threads = []

  

  for ll in range(100):

    t = Process(target=testFunc, args=(1,))

    t.daemon = True

    threads.append(t)

  

  for i in range(len(threads)):

    threads[i].start()

  

  for j in range(len(threads)):

    threads[j].join()

  

  print "------------------------"

  print 'process id:', os.getpid()

  print sum.value

登入後複製

结果:

1

2

3

------------------------

process id: 17378

97

登入後複製

也许你会问:WTF?其实这个问题在多线程时代就存在了,只是在多进程时代又杯具重演了而已:Lock!

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

from multiprocessing import Process, Manager, Lock

import os

  

lock = Lock()

manager = Manager()

sum = manager.Value('tmp', 0)

  

  

def testFunc(cc, lock):

  with lock:

    sum.value += cc

  

  

if __name__ == '__main__':

  threads = []

  

  for ll in range(100):

    t = Process(target=testFunc, args=(1, lock))

    t.daemon = True

    threads.append(t)

  

  for i in range(len(threads)):

    threads[i].start()

  

  for j in range(len(threads)):

    threads[j].join()

  

  print "------------------------"

  print 'process id:', os.getpid()

  print sum.value

登入後複製

这段代码性能如何呢?跑跑看,或者加大循环次数试一下。。。
4、最后的建议:

    Note that usually sharing data between processes may not be the best choice, because of all the synchronization issues; an approach involving actors exchanging messages is usually seen as a better choice. See also Python documentation: As mentioned above, when doing concurrent programming it is usually best to avoid using shared state as far as possible. This is particularly true when using multiple processes. However, if you really do need to use some shared data then multiprocessing provides a couple of ways of doing so.

5、Refer:

http://stackoverflow.com/questions/14124588/python-multiprocessing-shared-memory

http://eli.thegreenplace.net/2012/01/04/shared-counter-with-pythons-multiprocessing/

http://docs.python.org/2/library/multiprocessing.html#multiprocessing.sharedctypes.synchronized

本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

<🎜>:泡泡膠模擬器無窮大 - 如何獲取和使用皇家鑰匙
4 週前 By 尊渡假赌尊渡假赌尊渡假赌
北端:融合系統,解釋
4 週前 By 尊渡假赌尊渡假赌尊渡假赌
Mandragora:巫婆樹的耳語 - 如何解鎖抓鉤
3 週前 By 尊渡假赌尊渡假赌尊渡假赌

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

熱門話題

Java教學
1673
14
CakePHP 教程
1429
52
Laravel 教程
1333
25
PHP教程
1278
29
C# 教程
1257
24
PHP和Python:解釋了不同的範例 PHP和Python:解釋了不同的範例 Apr 18, 2025 am 12:26 AM

PHP主要是過程式編程,但也支持面向對象編程(OOP);Python支持多種範式,包括OOP、函數式和過程式編程。 PHP適合web開發,Python適用於多種應用,如數據分析和機器學習。

在PHP和Python之間進行選擇:指南 在PHP和Python之間進行選擇:指南 Apr 18, 2025 am 12:24 AM

PHP適合網頁開發和快速原型開發,Python適用於數據科學和機器學習。 1.PHP用於動態網頁開發,語法簡單,適合快速開發。 2.Python語法簡潔,適用於多領域,庫生態系統強大。

sublime怎麼運行代碼python sublime怎麼運行代碼python Apr 16, 2025 am 08:48 AM

在 Sublime Text 中運行 Python 代碼,需先安裝 Python 插件,再創建 .py 文件並編寫代碼,最後按 Ctrl B 運行代碼,輸出會在控制台中顯示。

PHP和Python:深入了解他們的歷史 PHP和Python:深入了解他們的歷史 Apr 18, 2025 am 12:25 AM

PHP起源於1994年,由RasmusLerdorf開發,最初用於跟踪網站訪問者,逐漸演變為服務器端腳本語言,廣泛應用於網頁開發。 Python由GuidovanRossum於1980年代末開發,1991年首次發布,強調代碼可讀性和簡潔性,適用於科學計算、數據分析等領域。

Python vs. JavaScript:學習曲線和易用性 Python vs. JavaScript:學習曲線和易用性 Apr 16, 2025 am 12:12 AM

Python更適合初學者,學習曲線平緩,語法簡潔;JavaScript適合前端開發,學習曲線較陡,語法靈活。 1.Python語法直觀,適用於數據科學和後端開發。 2.JavaScript靈活,廣泛用於前端和服務器端編程。

Golang vs. Python:性能和可伸縮性 Golang vs. Python:性能和可伸縮性 Apr 19, 2025 am 12:18 AM

Golang在性能和可擴展性方面優於Python。 1)Golang的編譯型特性和高效並發模型使其在高並發場景下表現出色。 2)Python作為解釋型語言,執行速度較慢,但通過工具如Cython可優化性能。

vscode在哪寫代碼 vscode在哪寫代碼 Apr 15, 2025 pm 09:54 PM

在 Visual Studio Code(VSCode)中編寫代碼簡單易行,只需安裝 VSCode、創建項目、選擇語言、創建文件、編寫代碼、保存並運行即可。 VSCode 的優點包括跨平台、免費開源、強大功能、擴展豐富,以及輕量快速。

notepad 怎麼運行python notepad 怎麼運行python Apr 16, 2025 pm 07:33 PM

在 Notepad 中運行 Python 代碼需要安裝 Python 可執行文件和 NppExec 插件。安裝 Python 並為其添加 PATH 後,在 NppExec 插件中配置命令為“python”、參數為“{CURRENT_DIRECTORY}{FILE_NAME}”,即可在 Notepad 中通過快捷鍵“F6”運行 Python 代碼。

See all articles