Blocks within redis
List of all the block within the redis group. If you're running an older core version, there may be groups listed here that are not available to you (yet).
value v11.0.0
get redis cache
set condition v11.0.0
Set key to hold the string value. If key already holds a value, it is overwritten, regardless of its type.
get cache key condition v13.0.6
gets the key and returns true or false based of its existence, makes it easier for cache-management in flows
set cache ttl value v11.0.0
set the time to live in seconds
get cache ttl number v11.0.0
get the time to live in seconds
exists condition v11.0.0
Checks if the key already exists
set json condition v13.0.8
Set key to hold the string value. If key already holds a value, it is overwritten, regardless of its type.
increment number v11.0.0
Increments the number stored at key by one. If the key does not exist, it is set to 0 before performing the operation.
get cache json key condition v13.0.8
gets the key and returns true or false based of its existence, makes it easier for cache-management in flows
decrement number v11.0.0
Decrements the number stored at key by one. If the key does not exist, it is set to 0 before performing the operation.
delete condition v11.0.0
Removes the specified key and their values.
Back to
redis
Return to the main group to view all sub-groups