91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

佛冈县| 三门峡市| 蓬溪县| 集安市| 诸城市| 元谋县| 曲松县| 峡江县| 长宁区| 泽库县| 新蔡县| 霍州市| 屏山县| 晋州市| 正阳县| 南丹县| 刚察县| 巨鹿县| 双鸭山市| 英德市| 旬邑县| 华池县| 油尖旺区| 图们市| 沁水县| 灵丘县| 达尔| 霍城县| 黄陵县| 巧家县| 老河口市| 溧阳市| 松桃| 恩施市| 宝应县| 高淳县| 扶风县| 巨野县| 西和县| 朝阳县| 乐业县|