Skip to content

Cache Get

Fetches a previously stored value from a cache entry.

Use the Cache Set block to store values in the cache.

Type identifier

Use the following identifier in step "type" field: roboflow_core/cache_get@v1to add the block as as step in your workflow.

Properties

Name Type Description Refs
name str Enter a unique identifier for this step..
key str The key of the cache entry to fetch..

The Refs column marks possibility to parametrise the property with dynamic values available in workflow runtime. See Bindings for more info.

Available Connections

Check what blocks you can connect to Cache Get in version v1.

Input and Output Bindings

The available connections depend on its binding kinds. Check what binding kinds Cache Get in version v1 has.

Bindings
  • input

    • image (image): The image data to use as a reference for the cache namespace..
    • key (string): The key of the cache entry to fetch..
  • output

    • output (*): Equivalent of any element.
Example JSON definition of step Cache Get in version v1
{
    "name": "<your_step_name_here>",
    "type": "roboflow_core/cache_get@v1",
    "image": "$inputs.image",
    "key": "my_cache_key"
}