python線程池(threadpool)模塊使用筆記詳解
最近在做一個(gè)視頻設(shè)備管理的項(xiàng)目,設(shè)備包括(攝像機(jī),DVR,NVR等),包括設(shè)備信息補(bǔ)全,設(shè)備狀態(tài)推送,設(shè)備流地址推送等,如果同時(shí)導(dǎo)入的設(shè)備數(shù)量較多,如果使用單線程進(jìn)行設(shè)備檢測(cè),那么由于設(shè)備數(shù)量較多,會(huì)帶來較大的延時(shí),因此考慮多線程處理此問題。
可以使用python語言自己實(shí)現(xiàn)線程池,或者可以使用第三方包threadpool線程池包,本主題主要介紹threadpool的使用以及其里面的具體實(shí)現(xiàn)。
一、安裝與簡(jiǎn)介
pip install threadpool pool = ThreadPool(poolsize) requests = makeRequests(some_callable, list_of_args, callback) [pool.putRequest(req) for req in requests] pool.wait()
第一行定義了一個(gè)線程池,表示最多可以創(chuàng)建poolsize這么多線程;
第二行是調(diào)用makeRequests創(chuàng)建了要開啟多線程的函數(shù),以及函數(shù)相關(guān)參數(shù)和回調(diào)函數(shù),其中回調(diào)函數(shù)可以不寫,default是無,也就是說makeRequests只需要2個(gè)參數(shù)就可以運(yùn)行;
第三行用法比較奇怪,是將所有要運(yùn)行多線程的請(qǐng)求扔進(jìn)線程池,[pool.putRequest(req) for req in requests]等同于
for req in requests: pool.putRequest(req)
第四行是等待所有的線程完成工作后退出。
二、代碼實(shí)例
import time def sayhello(str): print "Hello ",str time.sleep(2) name_list =['xiaozi','aa','bb','cc'] start_time = time.time() for i in range(len(name_list)): sayhello(name_list[i]) print '%d second'% (time.time()-start_time)
改用線程池代碼,花費(fèi)時(shí)間更少,更效率
import time import threadpool def sayhello(str): print "Hello ",str time.sleep(2) name_list =['xiaozi','aa','bb','cc'] start_time = time.time() pool = threadpool.ThreadPool(10) requests = threadpool.makeRequests(sayhello, name_list) [pool.putRequest(req) for req in requests] pool.wait() print '%d second'% (time.time()-start_time)
當(dāng)函數(shù)有多個(gè)參數(shù)的情況,函數(shù)調(diào)用時(shí)第一個(gè)解包list,第二個(gè)解包dict,所以可以這樣:
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)]
pool = threadpool.ThreadPool(2)
requests = threadpool.makeRequests(hello, func_var)
[pool.putRequest(req) for req in requests]
pool.wait()
需要把所傳入的參數(shù)進(jìn)行轉(zhuǎn)換,然后帶人線程池。
def getuserdic():
username_list=['xiaozi','administrator']
password_list=['root','','abc123!','123456','password','root']
userlist = []
for username in username_list:
user =username.rstrip()
for password in password_list:
pwd = password.rstrip()
userdic ={}
userdic['user']=user
userdic['pwd'] = pwd
tmp=(None,userdic)
userlist.append(tmp)
return userlist
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- 淺談python 線程池threadpool之實(shí)現(xiàn)
- python線程池threadpool使用篇
- python線程池threadpool實(shí)現(xiàn)篇
- Python線程池模塊ThreadPoolExecutor用法分析
- Python 使用threading+Queue實(shí)現(xiàn)線程池示例
- 解決python ThreadPoolExecutor 線程池中的異常捕獲問題
- python線程池 ThreadPoolExecutor 的用法示例
- Python線程池thread?pool創(chuàng)建使用及實(shí)例代碼分享
- python3線程池ThreadPoolExecutor處理csv文件數(shù)據(jù)
- Python?常用模塊threading和Thread模塊之線程池
相關(guān)文章
python如何實(shí)現(xiàn)排序,并標(biāo)上序號(hào)
這篇文章主要介紹了python如何實(shí)現(xiàn)排序,并標(biāo)上序號(hào),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-06-06
Python?pandas中apply函數(shù)簡(jiǎn)介以及用法詳解
apply()函數(shù)是pandas里面所有函數(shù)中自由度最高的函數(shù), apply()函數(shù)的參數(shù)是一個(gè)函數(shù)指針,這里可以使用lambda表達(dá)式幫助簡(jiǎn)化代碼,下面這篇文章主要給大家介紹了關(guān)于Python?pandas中apply函數(shù)簡(jiǎn)介以及用法的相關(guān)資料,需要的朋友可以參考下2022-09-09
推薦技術(shù)人員一款Python開源庫(造數(shù)據(jù)神器)
今天小編給大家推薦一款Python開源庫,技術(shù)人必備的造數(shù)據(jù)神器!非常不錯(cuò),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友參考下吧2020-07-07
Python OpenCV使用dlib進(jìn)行多目標(biāo)跟蹤詳解
這篇文章主要為大家介紹了如何使用 dlib 庫在實(shí)時(shí)視頻中有效地跟蹤多個(gè)對(duì)象,文中的示例代碼講解詳細(xì),對(duì)我們學(xué)習(xí)OpenCV有一定幫助,需要的可以參考一下2022-03-03
使用IPython或Spyder將省略號(hào)表示的內(nèi)容完整輸出
這篇文章主要介紹了使用IPython或Spyder將省略號(hào)表示的內(nèi)容完整輸出,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2020-04-04

