먼저 아래와 같이 BackgroundTasks를 임포트하고, BackgroundTasks를 경로 작동 함수 에서 매개변수로 가져오고 정의합니다.
fromfastapiimportBackgroundTasks,FastAPIapp=FastAPI()defwrite_notification(email:str,message=""):withopen("log.txt",mode="w")asemail_file:content=f"notification for {email}: {message}"email_file.write(content)@app.post("/send-notification/{email}")asyncdefsend_notification(email:str,background_tasks:BackgroundTasks):background_tasks.add_task(write_notification,email,message="some notification")return{"message":"Notification sent in the background"}
FastAPI는 이것이 async def 함수이든, 일반 def 함수이든 내부적으로 이를 올바르게 처리합니다.
이 경우, 아래 작업은 파일에 쓰는 함수입니다. (이메일 보내기 시물레이션)
그리고 이 작업은 async와 await를 사용하지 않으므로 일반 def 함수로 선언합니다.
fromfastapiimportBackgroundTasks,FastAPIapp=FastAPI()defwrite_notification(email:str,message=""):withopen("log.txt",mode="w")asemail_file:content=f"notification for {email}: {message}"email_file.write(content)@app.post("/send-notification/{email}")asyncdefsend_notification(email:str,background_tasks:BackgroundTasks):background_tasks.add_task(write_notification,email,message="some notification")return{"message":"Notification sent in the background"}
경로 작동 함수 내에서 작업 함수를 .add_task() 함수 통해 백그라운드 작업 개체에 전달합니다.
fromfastapiimportBackgroundTasks,FastAPIapp=FastAPI()defwrite_notification(email:str,message=""):withopen("log.txt",mode="w")asemail_file:content=f"notification for {email}: {message}"email_file.write(content)@app.post("/send-notification/{email}")asyncdefsend_notification(email:str,background_tasks:BackgroundTasks):background_tasks.add_task(write_notification,email,message="some notification")return{"message":"Notification sent in the background"}
.add_task() 함수는 다음과 같은 인자를 받습니다 :
백그라운드에서 실행되는 작업 함수 (write_notification).
작업 함수에 순서대로 전달되어야 하는 일련의 인자 (email).
작업 함수에 전달되어야하는 모든 키워드 인자 (message="some notification").