我们在实际的开发中,都会遇到,我们要执行的一些任务很耗时,但是对于前端,没必要进行等待。比如发送邮件,读取文件。我们在fastapi如何实现呢。
其实很简单,fastapi已经给我们封装好一个现成的模块,我们直接调用使用即可,非常方便。我们举一个简单例子演示下
from fastapi import FastAPI, BackgroundTasks
import timeapp = FastAPI(docs_url="/api/docs", redoc_url="/redoc")def write_big_text(email: str, msg: str = ""):time.sleep(200)with open("big_text.txt", mode="w") as email_file:content = f"name {email}: {msg}"email_file.write(content)@app.post("/send_email")
async def send_email(email: str, background_task: BackgroundTasks):background_task.add_task(write_big_text, email, msg="啥都行")return {"message": "the task is running background"}
使用postman测试接口
我们的接口处理完成,但是后台任务还需要等待200s后才能执行完毕。所以我们不必等着任务全部执行完毕再返回,针对特别耗时的任务必须放在后台执行,不能占用前端的进程,不然会影响用户体验和接口返回的。
当然,执行这种耗时任务还有很多插件可以使用,但fastapi也给我们提供了很方便的自己的方法,可以 使用