亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python線程池的實現方法有哪些

發布時間:2023-04-19 15:14:48 來源:億速云 閱讀:159 作者:iii 欄目:開發技術

這篇文章主要介紹“python線程池的實現方法有哪些”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“python線程池的實現方法有哪些”文章能幫助大家解決問題。

python 線程池的四種實現方式

線程簡述

 一個程序運行起來后,一定有一個執行代碼的東西,這個東西就是線程;
 一般計算(CPU)密集型任務適合多進程,IO密集型任務適合多線程;
一個進程可擁有多個并行的(concurrent)線程,當中每一個線程,共享當前進程的資源

以下是對發現的幾種多線程進行的匯總整理,均已測試運行 多線程實現的四種方式分別是:

multiprocessing下面有兩種:

from multiprocessing.dummy import Pool as ThreadPool  # 線程池

from multiprocessing.pool import ThreadPool   # 線程池,用法無區別,唯一區別這個是線程池
另外兩種:
from concurrent.futures import ThreadPoolExecutor  # python原生線程池,這個更主流

import threadpool  # 線程池,需要 pip install threadpool,很早之前的

方式1 multiprocessing.dummy Pool()

  • 非阻塞方法

multiprocessing.dummy.Pool.apply_async() 和 multiprocessing.dummy.Pool.imap()
線程并發執行

  • 阻塞方法

multiprocessing.dummy.Pool.apply()和 multiprocessing.dummy.Pool.map()
線程順序執行

from multiprocessing.dummy import Pool as Pool
import time

def func(msg):
    print('msg:', msg)
    time.sleep(2)
    print('end:')
    
pool = Pool(processes=3)
for i in range(1, 5):
    msg = 'hello %d' % (i)
    pool.apply_async(func, (msg,))  # 非阻塞,子線程有返回值
    # pool.apply(func,(msg,))       # 阻塞,apply()源自內建函數,用于間接的調用函數,并且按位置把元祖或字典作為參數傳入。子線程無返回值
    # pool.imap(func,[msg,])        # 非阻塞, 注意與apply傳的參數的區別 無返回值
    # pool.map(func, [msg, ])       # 阻塞 子線程無返回值

print('Mark~~~~~~~~~~~~~~~')
pool.close()
pool.join()  # 調用join之前,先調用close函數,否則會出錯。執行完close后不會有新的進程加入到pool,join函數等待所有子進程結束
print('sub-process done')

運行結果:

python線程池的實現方法有哪些

方式2:multiprocessing.pool ThreadPool Threading()

from multiprocessing.pool import ThreadPool   # 線程池,用法無區別,唯一區別這個是線程池
from multiprocessing.dummy import Pool as ThreadPool  # 線程池
import os
import time

print("hi outside of main()")


def hello(x):
    print("inside hello()")
    print("Proccess id: %s" %(os.getpid()))
    time.sleep(3)
    return x*x


if __name__ == "__main__":
    p = ThreadPool(5)
    pool_output = p.map(hello, range(3))
    print(pool_output)

運行結果:

python線程池的實現方法有哪些

方式3:主流ThreadPoolExecutor

from concurrent.futures import ThreadPoolExecutor
import threading
import time

# 定義一個準備作為線程任務的函數
def action(max):
    my_sum = 0
    for i in range(max):
        print(threading.current_thread().name + '  ' + str(i))
        my_sum += i
    return my_sum
# 創建一個包含2條線程的線程池
pool = ThreadPoolExecutor(max_workers=2)
# 向線程池提交一個task, 20會作為action()函數的參數
future1 = pool.submit(action, 20)
# 向線程池再提交一個task, 30會作為action()函數的參數
future2 = pool.submit(action, 30)
# 判斷future1代表的任務是否結束
print(future1.done())
time.sleep(3)
# 判斷future2代表的任務是否結束
print(future2.done())
# 查看future1代表的任務返回的結果
print(future1.result())
# 查看future2代表的任務返回的結果
print(future2.result())
# 關閉線程池
pool.shutdown()

運行結果:

python線程池的實現方法有哪些

方式4:threadpool

需要 pip install threadpool

import threadpool


def hello(m, n, o):
    """"""
    print("m = %s, n = %s, o = %s" % (m, n, o))


if __name__ == '__main__':
    # 方法1
    # lst_vars_1 = ['1', '2', '3']
    # lst_vars_2 = ['4', '5', '6']
    # func_var = [(lst_vars_1, None), (lst_vars_2, None)]
    # 方法2
    dict_vars_1 = {'m': '1', 'n': '2', 'o': '3'}
    dict_vars_2 = {'m': '4', 'n': '5', 'o': '6'}
    func_var = [(None, dict_vars_1), (None, dict_vars_2)]
    # 定義了一個線程池,表示最多可以創建poolsize這么多線程
    pool = threadpool.ThreadPool(2)
    # 調用makeRequests創建了要開啟多線程的函數,以及函數相關參數和回調函數,其中回調函數可以不寫
    requests = threadpool.makeRequests(hello, func_var)
    [pool.putRequest(req) for req in requests]   # 將所有要運行多線程的請求扔進線程池
    pool.wait()   # 等待所有線程完成工作后退出

"""
[pool.putRequest(req) for req in requests]等同于
  for req in requests:  
     pool.putRequest(req) 
"""

運行結果:

python線程池的實現方法有哪些

關于“python線程池的實現方法有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

瑞丽市| 海宁市| 阜宁县| 故城县| 胶南市| 郎溪县| 桐乡市| 山阳县| 庄河市| 海淀区| 兴化市| 阿图什市| 莱阳市| 博爱县| 双江| 泗洪县| 大邑县| 昌宁县| 西乌珠穆沁旗| 府谷县| 油尖旺区| 苗栗县| 南汇区| 井陉县| 河东区| 沙坪坝区| 桐柏县| 肥乡县| 翁源县| 东辽县| 武安市| 盈江县| 繁峙县| 正阳县| 潞城市| 延津县| 西和县| 鸡西市| 邛崃市| 子洲县| 深水埗区|