溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python中多線程和多處理的分析

發(fā)布時(shí)間:2021-11-03 09:47:12 來(lái)源:億速云 閱讀:140 作者:iii 欄目:編程語(yǔ)言

本篇內(nèi)容主要講解“Python中多線程和多處理的分析”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“Python中多線程和多處理的分析”吧!

多線程

簡(jiǎn)單地說(shuō),線程允許您并行地運(yùn)行程序。花費(fèi)大量時(shí)間等待外部事件的任務(wù)通常適合線程化。它們也稱為I/O  Bound任務(wù)例如從文件中讀寫(xiě),網(wǎng)絡(luò)操作或使用API在線下載。讓我們來(lái)看一個(gè)示例,它展示了使用線程的好處。

1. 沒(méi)有線程

在本例中,我們希望通過(guò)順序運(yùn)行程序來(lái)查看從Unsplash API下載15張圖像需要多長(zhǎng)時(shí)間:

import requests import time img_urls = [     'https://images.unsplash.com/photo-1516117172878-fd2c41f4a759',     'https://images.unsplash.com/photo-1532009324734-20a7a5813719',     'https://images.unsplash.com/photo-1524429656589-6633a470097c',     'https://images.unsplash.com/photo-1530224264768-7ff8c1789d79',     'https://images.unsplash.com/photo-1564135624576-c5c88640f235',     'https://images.unsplash.com/photo-1541698444083-023c97d3f4b6',     'https://images.unsplash.com/photo-1522364723953-452d3431c267',     'https://images.unsplash.com/photo-1513938709626-033611b8cc03',     'https://images.unsplash.com/photo-1507143550189-fed454f93097',     'https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e',     'https://images.unsplash.com/photo-1504198453319-5ce911bafcde',     'https://images.unsplash.com/photo-1530122037265-a5f1f91d3b99',     'https://images.unsplash.com/photo-1516972810927-80185027ca84',     'https://images.unsplash.com/photo-1550439062-609e1531270e',     'https://images.unsplash.com/photo-1549692520-acc6669e2f0c' ]  start = time.perf_counter() #start timer for img_url in img_urls:     img_name = img_url.split('/')[3] #get image name from url     img_bytes = requests.get(img_url).content with open(img_name, 'wb') as img_file:      img_file.write(img_bytes) #save image to disk   finish = time.perf_counter() #end timer print(f"Finished in {round(finish-start,2)} seconds")   #results Finished in 23.101926751 seconds

一共用時(shí)23秒。

2. 多線程

讓我們看看Pyhton中的線程模塊如何顯著地改進(jìn)我們的程序執(zhí)行:

import time from concurrent.futures import ThreadPoolExecutor  def download_images(url):     img_name = img_url.split('/')[3]     img_bytes = requests.get(img_url).content     with open(img_name, 'wb') as img_file:          img_file.write(img_bytes)          print(f"{img_name} was downloaded")  start = time.perf_counter() #start timer with ThreadPoolExecutor() as executor:     results = executor.map(download_images,img_urls) #this is Similar to map(func, *iterables) finish = time.perf_counter() #end timer print(f"Finished in {round(finish-start,2)} seconds")  #results  Finished in 5.544147536 seconds

我們可以看到,與不使用線程代碼相比,使用線程代碼可以顯著提高速度。從23秒到5秒。

對(duì)于本例,請(qǐng)注意在創(chuàng)建線程時(shí)存在開(kāi)銷(xiāo),因此將線程用于多個(gè)API調(diào)用是有意義的,而不僅僅是單個(gè)調(diào)用。

此外,對(duì)于密集的計(jì)算,如數(shù)據(jù)處理,圖像處理多處理比線程執(zhí)行得更好。

到此,相信大家對(duì)“Python中多線程和多處理的分析”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI