0
我想從python中的worker角色監聽azure隊列。 有沒有辦法編寫一個函數,只有當一個新的消息即將到來時纔會觸發? 與Python的工具Visual Studio中的模板代碼爲:聆聽來自python的web工作的azure隊列消息
if __name__ == '__main__':
while True:
#
# Write your worker process here.
#
# You will probably want to call a blocking function such as
# bus_service.receive_queue_message('queue name', timeout=seconds)
# to avoid consuming 100% CPU time while your worker has no work.
#
sleep(1.0)
我可以看到,對於服務BU有一個監聽功能,但我無法找到一個隊列API
感謝您的回答,功能應用程序可以適用於長時間運行的任務謊言nlp分析? – royi
@royi不,我想。 Function Apps是一個無服務器的Web框架,我不認爲將它用於NLP分析(如Python中的NLTK)並不是一個好主意。 –
Python在功能應用程序中仍受實驗支持。沒有在生產環境中使用。 – SILENCE