中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

湖南省| 汝城县| 苍梧县| 隆昌县| 怀柔区| 临澧县| 黑河市| 沧州市| 朝阳市| 绵竹市| 迁安市| 双江| 北安市| 青川县| 维西| 尚志市| 慈利县| 怀集县| 吐鲁番市| 宣化县| 西华县| 望江县| 肥东县| 商城县| 玉山县| 讷河市| 凤山市| 固原市| 岳阳市| 东乡县| 巴林左旗| 连江县| 都安| 万盛区| 凌海市| 东乡族自治县| 台江县| 惠来县| 托克逊县| 团风县| 腾冲县|