Skip to content

flow cache remove

Remove a key from the cached data store.

Synopsis

The data store is a key-value store that can be used to persist data across executions. Values that are set outside of an executable will persist across all executions until they are cleared. When set within an executable, the data will only persist across serial or parallel sub-executables but all values will be cleared when the parent executable completes. Use the --global flag to force use of the global cache scope, even when called from within an executable.

This will remove the specified key and its value from the data store.

shell
flow cache remove KEY [flags]

Options

FlagTypeDescription
-g, --globalForce use of the global cache scope, even when called from within an executable
-h, --helphelp for remove
-o, --outputstringOutput format. One of: yaml, json, or tui.

Options inherited from parent commands

FlagTypeDescription
-L, --log-levelstringLog verbosity level (debug, info, fatal) (default "info")
--syncSync flow cache and workspaces

See also