裝飾函数

@lru_cache()

返回第一次執行取得的值,而不是再次计算它(避免效能低卻不用更新的取值函數重複執行)。

https://fastapi.tiangolo.com/zh/advanced/settings/#lru_cache

Last updated