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).
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.
exists condition
v11.0.0
Checks if the key already exists
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 value
v11.0.0
get redis cache
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
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.
set cache ttl value
v11.0.0
set the time to live in seconds
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
get cache ttl number
v11.0.0
get the time to live in seconds
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