主頁(yè) > 知識(shí)庫(kù) > Python  Asyncio模塊實(shí)現(xiàn)的生產(chǎn)消費(fèi)者模型的方法

Python  Asyncio模塊實(shí)現(xiàn)的生產(chǎn)消費(fèi)者模型的方法

熱門標(biāo)簽:400電話申請(qǐng)資格 電銷機(jī)器人系統(tǒng)廠家鄭州 螳螂科技外呼系統(tǒng)怎么用 阿里電話機(jī)器人對(duì)話 舉辦過冬奧會(huì)的城市地圖標(biāo)注 遼寧智能外呼系統(tǒng)需要多少錢 qt百度地圖標(biāo)注 地圖地圖標(biāo)注有嘆號(hào) 正安縣地圖標(biāo)注app

asyncio的關(guān)鍵字說明

  • event_loop事件循環(huán):程序開啟一個(gè)無限循環(huán),把一些函數(shù)注冊(cè)到事件循環(huán)上,當(dāng)滿足事件發(fā)生的時(shí)候,調(diào)用相應(yīng)的協(xié)程函數(shù)
  • coroutine協(xié)程:協(xié)程對(duì)象,指一個(gè)使用async關(guān)鍵字定義的函數(shù),它的調(diào)用不會(huì)立即執(zhí)行函數(shù),而是會(huì)返回一個(gè)協(xié)程對(duì)象,協(xié)程對(duì)象需要注冊(cè)到事件循環(huán),由事件循環(huán)調(diào)用。
  • task任務(wù):一個(gè)協(xié)程對(duì)象就是一個(gè)原生可以掛起的函數(shù),任務(wù)則是對(duì)協(xié)程進(jìn)一步封裝,其中包含了任務(wù)的各種狀態(tài)
  • future:代表將來執(zhí)行或沒有執(zhí)行的任務(wù)結(jié)果。它和task上沒有本質(zhì)上的區(qū)別
  • async/await關(guān)鍵字:async定義一個(gè)協(xié)程,await用于掛起阻塞的異步調(diào)用接口,在python3.4是使用asyncio.coroutine/yield from

在設(shè)計(jì)模式中,生產(chǎn)消費(fèi)者模型占有非常重要的地位,這個(gè)模型在現(xiàn)實(shí)世界中也有很多有意思的對(duì)應(yīng)場(chǎng)景,比如做包子的人和吃包子的人,當(dāng)兩者速度不匹配時(shí),就需要有一個(gè)模型來做匹配(偶合),實(shí)現(xiàn)做的包子都會(huì)依次消費(fèi)掉。

import asyncio

class ConsumerProducerModel:
  def __init__(self, producer, consumer, queue=asyncio.Queue(), plate_size=6): # the plate holds 6pcs bread
    self.queue = queue
    self.producer = producer
    self.consumer = consumer
    self.plate_size = plate_size

  async def produce_bread(self):
    for i in range(self.plate_size):
      bread = f"bread {i}"
      await asyncio.sleep(0.5) # bread makes faster, 0.5s/pc
      await self.queue.put(bread)
      print(f'{self.producer} makes {bread}')

  async def consume_bread(self):
    while True:
      bread = await self.queue.get()
      await asyncio.sleep(1) # eat slower, 1s/pc
      print(f'{self.consumer} eats {bread}')
      self.queue.task_done()

async def main():
  queue = asyncio.Queue()
  cp1 = ConsumerProducerModel("John", "Grace", queue) # group 1
  cp2 = ConsumerProducerModel("Mike", "Lucy", queue) # group 2

  producer_1 = cp1.produce_bread()
  producer_2 = cp2.produce_bread()

  consumer_1 = asyncio.ensure_future(cp1.consume_bread())
  consumer_2 = asyncio.ensure_future(cp2.consume_bread())

  await asyncio.gather(*[producer_1, producer_2])
  await queue.join()
  consumer_1.cancel()
  consumer_2.cancel()

if __name__ == '__main__':
  loop = asyncio.get_event_loop()
  loop.run_until_complete(main())
  loop.close()

生產(chǎn)消費(fèi)者模型可以使用多線程和隊(duì)列來實(shí)現(xiàn),這里選擇協(xié)程不僅是因?yàn)樾阅懿诲e(cuò),而且整個(gè)下來邏輯清晰:

1. 先定義初始化的東西,要有個(gè)隊(duì)列,要有生產(chǎn)者,要有消費(fèi)者,要有裝面包的盤子大??;

2. 生產(chǎn)者:根據(jù)盤子大小生產(chǎn)出對(duì)應(yīng)的東西(面包),將東西放入盤子(queue);

3. 消費(fèi)者:從盤子上取東西,每次取東西都是一個(gè)任務(wù),每次任務(wù)完成,就標(biāo)記為task_done(調(diào)用函數(shù))。在這個(gè)層面,一直循環(huán);

4. 主邏輯:實(shí)例化生產(chǎn)消費(fèi)者模型對(duì)象,創(chuàng)建生產(chǎn)者協(xié)程,創(chuàng)建任務(wù)(ensure_future),收集協(xié)程結(jié)果,等待所有線程結(jié)束(join),手動(dòng)取消兩個(gè)消費(fèi)者協(xié)程;

5. 運(yùn)行:首先創(chuàng)建事件循環(huán),然后進(jìn)入主邏輯,直到完成,關(guān)閉循環(huán)。

到此這篇關(guān)于Python Asyncio模塊實(shí)現(xiàn)的生產(chǎn)消費(fèi)者模型的方法的文章就介紹到這了,更多相關(guān)Python生產(chǎn)消費(fèi)者模型內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • python asyncio 協(xié)程庫(kù)的使用
  • python 使用事件對(duì)象asyncio.Event來同步協(xié)程的操作
  • python中asyncio異步編程學(xué)習(xí)
  • python中使用asyncio實(shí)現(xiàn)異步IO實(shí)例分析
  • Python并發(fā)concurrent.futures和asyncio實(shí)例
  • Python中asyncio模塊的深入講解
  • Python中的asyncio代碼詳解
  • Python中asyncio與aiohttp入門教程
  • Python中使用asyncio 封裝文件讀寫
  • Python協(xié)程asyncio模塊的演變及高級(jí)用法

標(biāo)簽:淘寶好評(píng)回訪 興安盟 昭通 濟(jì)源 信陽(yáng) 合肥 阜新 隨州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Python  Asyncio模塊實(shí)現(xiàn)的生產(chǎn)消費(fèi)者模型的方法》,本文關(guān)鍵詞  Python,amp,nbsp,Asyncio,模塊,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Python  Asyncio模塊實(shí)現(xiàn)的生產(chǎn)消費(fèi)者模型的方法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Python  Asyncio模塊實(shí)現(xiàn)的生產(chǎn)消費(fèi)者模型的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章