Hey folk! To my knowledge task results are stored...
# ask-community
m
Hey folk! To my knowledge task results are stored to
~/.prefect/storage
by default. Is it possible to do something like:
Copy code
@task(
    persist_result=True,
    cache_policy=INPUTS,
    result_storage="~/storage/{flow.name}/{uuid}/",
)
def fetch_tolkeregning_details(uuid: str) -> dict:
    ...
n
hi @Martin - yes! check out the
result_storage_key
here