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 Decrements the number stored at key by one. If the key does not exist, it is set to 0 before performing the operation. get cache value v11.0.0 get redis cache 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. rate limit condition v15.0.0 Counts calls per registered key and reports whether this one is still within the limit. Replaces the incr-key + ttl + condition chain every API blueprint used to build by hand: pick a key that identifies the caller (for example one with a {ip:value} placeholder), a limit, and a window. Rejected calls count towards the limit as well. 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 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 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 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 ttl number v11.0.0 get the time to live in seconds delete condition v11.0.0 Removes the specified key and their values. exists condition v11.0.0 Checks if the key already exists Back to
redis Return to the main group to view all sub-groups