FastAPI中怎么实现懒加载

1063
2024/4/30 11:33:53
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

要在FastAPI中实现懒加载,可以使用Python的 functools 模块中的 lru_cache 装饰器。 lru_cache 装饰器可以缓存函数的结果,并在下次调用相同参数时返回缓存的结果,从而实现懒加载。

以下是一个使用 lru_cache 装饰器实现懒加载的示例代码:

from fastapi import FastAPI
from functools import lru_cache

app = FastAPI()

@lru_cache
def expensive_operation():
    print("Performing expensive operation...")
    return "Result of expensive operation"

@app.get("/")
async def root():
    result = expensive_operation()
    return {"message": result}

在上面的示例中,expensive_operation 函数是一个耗时的操作,使用 lru_cache 装饰器可以将其结果缓存起来,避免每次请求都执行这个耗时的操作。当第一次调用 expensive_operation 函数时,会执行耗时的操作,然后将结果缓存起来。当下次再次调用该函数时,将直接返回缓存的结果,而不需要再次执行耗时的操作。

通过这种方式,可以实现在FastAPI中的懒加载行为。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: FastAPI中怎么实现表单数据验证