真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何大幅度提高requests的訪問速度

如何大幅度提高requests的訪問速度,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

創(chuàng)新互聯(lián)專注于凌海網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供凌海營銷型網(wǎng)站建設,凌海網(wǎng)站制作、凌海網(wǎng)頁設計、凌海網(wǎng)站官網(wǎng)定制、微信小程序開發(fā)服務,打造凌海網(wǎng)絡公司原創(chuàng)品牌,更為您提供凌海網(wǎng)站排名全網(wǎng)營銷落地服務。

我做了一個垃圾信息過濾的 HTTP 接口。現(xiàn)在有一千萬條消息需要經(jīng)過這個接口進行垃圾檢測。

一開始我的代碼是這樣的:

import requests
messages = ['第一條', '第二條', '第三條']
for message in messages:
   resp = requests.post(url, json={'msg': message}).json()
   if resp['trash']:
       print('是垃圾消息')
 

我們寫一段代碼來看看運行速度:

如何大幅度提高requests的訪問速度  

訪問一百次百度,竟然需要 20 秒。那我有一千萬條信息,這個時間太長了。

有沒有什么加速的辦法呢?除了我們之前文章講到的 多線程、aiohttp 或者干脆用 Scrapy 外,還可以讓 requests 保持連接從而減少頻繁進行 TCP 三次握手的時間消耗。

那么要如何讓 requests 保持連接呢?實際上非常簡單,使用Session對象即可。

修改后的代碼:

import requests
import time

start = time.time()
session = requests.Session()
for _ in range(100):
   resp = session.get('https://baidu.com').content.decode()
end = time.time()
print(f'訪問一百次網(wǎng)頁,耗時:{end - start}')
 

運行效果如下圖所示:

如何大幅度提高requests的訪問速度  

性能得到了顯著提升。訪問 100 頁只需要 5 秒鐘。

在官方文檔[1]中,requests 也說到了 Session對象能夠保持連接:

?  

The Session object allows you to persist certain parameters across requests. It also persists cookies across all requests made from the Session instance, and will use urllib3’s connection pooling. So if you’re making several requests to the same host, the underlying TCP connection will be reused, which can result in a significant performance increase (see HTTP persistent connection).

”  
?  

Excellent news — thanks to urllib3, keep-alive is 100% automatic within a session! Any requests that you make within a session will automatically reuse the appropriate connection!

”  
    

看完上述內容,你們掌握如何大幅度提高requests的訪問速度的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


本文標題:如何大幅度提高requests的訪問速度
標題網(wǎng)址:http://weahome.cn/article/ppseop.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部