tengo una ruta
def some_function(value): fetch metadata for value from another api ..... return some_data app.route("/"): def something(value): data = call_function(value) process.. data... return data I am wondering if there is a way to cache the output of some_function(value)Tengo una interfaz que llama a este punto final cada pocos minutos y some_function obtiene metadatos en cada llamada. parece un desperdicio de una llamada, especialmente si la herramienta lejana se ha visto afectada de alguna manera. ¿Hay alguna manera de almacenar los datos y regresar rápidamente en este caso?