<@ULVA73B9P> when settings params such as _cache_r...
# ask-marvin
f
@Marvin when settings params such as _cache_result_in_memory_=False at the flow level, are the settings applied to all tasks called by the flow?
m
In Prefect 3.x, parameters set at the flow level, such as
_cache_result_in_memory_=False
, do not automatically apply to all tasks within that flow. Each task can have its own specific configuration, and flow-level settings do not cascade down to tasks unless explicitly configured to do so. You would need to set the caching behavior for each task individually if you want consistent behavior across all tasks in a flow. You can explore more about task caching and configurations in the Prefect task caching documentation. For more information on the Prefect API and its top-level offerings, you can refer to the Prefect API documentation.