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

溫馨提示×

溫馨提示×

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

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

asyncio怎么在Django中使用

發布時間:2021-03-24 16:41:04 來源:億速云 閱讀:812 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關asyncio怎么在Django中使用,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

def djangoview(request, language1, language2):
 async def main(language1, language2):
  loop = asyncio.get_event_loop()
  r = sr.Recognizer()
  with sr.AudioFile(path.join(os.getcwd(), "audio.wav")) as source:
   audio = r.record(source)
  def reco_ibm(lang):
   return(r.recognize_ibm(audio, key, secret language=lang, show_all=True))
  future1 = loop.run_in_executor(None, reco_ibm, str(language1))
  future2 = loop.run_in_executor(None, reco_ibm, str(language2))
  response1 = await future1
  response2 = await future2
 loop = asyncio.new_event_loop()
 asyncio.set_event_loop(loop)
 loop = asyncio.get_event_loop()
 loop.run_until_complete(main(language1, language2))
 loop.close()
 return(HttpResponse)

這個例子中,把兩個任務放到 asyncio 的 loop 運行,等到兩個任務都完成了再返回 HttpResponse 。

在 Django 的 View 中使用 asyncio

現在可以對于上面的例子做一個擴充,讓它能更合理被使用。

對于使用 asyncio ,我們通常會創建個子線程專門處理異步任務。

在 wsgi.py 中創建一個單獨線程并運行事件循環:

import asyncio
import threading

...
application = get_wsgi_application()

# 創建子線程并等待
thread_loop = asyncio.new_event_loop()
def start_loop(loop):
 asyncio.set_event_loop(loop)
 loop.run_forever()

t = threading.Thread(target=start_loop, args=(thread_loop,), daemon=True)
t.start()

然后就是在 view 中動態向里面添加任務了:

async def fetch(url):
  async with aiohttp.ClientSession() as session:
   async with session.get(url) as response:
    text = await response.text()
    return text

def hello(request):
 from yeezy_bot.wsgi import thread_loop

 fut1 = asyncio.run_coroutine_threadsafe(fetch(url1), thread_loop)
 fut2 = asyncio.run_coroutine_threadsafe(fetch(url2), thread_loop)

 ret1 = fut1.result()
 ret2 = fut2.result()
 return HttpResponse('')

asyncio.run_coroutine_threadsafe() 返回是 Future 對象,因此可以通過 fut.result() 獲得任務的運行結果。 這個方式也可以處理API請求中的數據依賴的先后順序。

上述就是小編為大家分享的asyncio怎么在Django中使用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

应城市| 黄骅市| 轮台县| 连州市| 岳普湖县| 察雅县| 哈巴河县| 八宿县| 许昌县| 长岭县| 丹阳市| 修文县| 永和县| 柘城县| 城固县| 饶河县| 犍为县| 湘西| 汪清县| 奉节县| 峨眉山市| 阜康市| 错那县| 木里| 巴林右旗| 平潭县| 葫芦岛市| 高邑县| 沈阳市| 沛县| 五原县| 加查县| 聊城市| 文登市| 五河县| 金秀| 上林县| 余姚市| 岳普湖县| 陆川县| 孙吴县|