Cache If defined, the result of the step will be cached for the number of seconds defined such that if this step were to be re-triggered with the same input it would retrieve and return its cached value instead of recomputing it.

{#if flowModule.value.type != 'rawscript'}

The cache settings need to be set in the referenced script/flow settings directly. Cache for hub scripts is not available yet.

{:else} { if (isCacheEnabled && flowModule.cache_ttl != undefined) { flowModule.cache_ttl = undefined } else { flowModule.cache_ttl = 600 } }} options={{ right: 'Cache the results for each possible inputs' }} />
How long to keep cache valid {#if flowModule.cache_ttl} {:else} {/if}
{/if}