Every action below is available as a verb in Cerebral OS — callable from a Cerebral, a Map, or the Runtime API. All executions are governed, audited, and dry-run safe.
Delete Key
upstash_redis:delete_key
Delete a Redis key and its value.
Write
High risk
Exists Key
upstash_redis:exists_key
Check if a Redis key exists.
Write
Medium risk
Flush Database
upstash_redis:flush_database
Flush (delete) all keys from the Redis database. USE WITH EXTREME CAUTION.
Write
Medium risk
Get Key
upstash_redis:get_key
Get the value of a Redis key.
Read
Low risk
Get Ttl
upstash_redis:get_ttl
Get the time to live (TTL) of a Redis key in seconds.
Read
Low risk
Hash Get
upstash_redis:hash_get
Get a field value from a Redis hash.
Write
Medium risk
Hash Get All
upstash_redis:hash_get_all
Get all fields and values from a Redis hash.
Write
Medium risk
Hash Set
upstash_redis:hash_set
Set a field value in a Redis hash.
Write
Medium risk
Increment Key
upstash_redis:increment_key
Increment a Redis key's numeric value.
Write
Medium risk
List Keys
upstash_redis:list_keys
List Redis keys matching a pattern.
Read
Low risk
List Length
upstash_redis:list_length
Get the length of a Redis list.
Read
Low risk
List Pop
upstash_redis:list_pop
Pop a value from a Redis list (queue).
Read
Low risk
List Push
upstash_redis:list_push
Push a value to a Redis list (queue).
Read
Low risk
Set Add
upstash_redis:set_add
Add a member to a Redis set.
Write
Medium risk
Set Expire
upstash_redis:set_expire
Set an expiration time on an existing Redis key.
Write
Medium risk
Set Key
upstash_redis:set_key
Set a Redis key-value pair with optional expiration.
Write
Medium risk
Set Members
upstash_redis:set_members
Get all members of a Redis set.
Write
Medium risk