Redis (Upstash)
Database

Redis (Upstash) Connector

Connect to Redis via Upstash to get/set keys, work with hashes and lists, and manage key expiry.

$pip install "toolsconnector[redis]"
18
Actions
Database
Category
Free
Apache 2.0

All 18 Actions

Action Description Parameters Returns
appendAppend a value to a Redis string keykey, valueRedisResult
dbsizeGet the number of keys in the Redis databaseRedisResult
delete ⚠Delete a Redis keykeyRedisResult
existsCheck if one or more keys existkeysRedisResult
expireSet a TTL (expiry) on a keykey, secondsRedisResult
getGet the value of a Redis keykeyRedisResult
hgetGet a field from a Redis hashkey, fieldRedisResult
hsetSet a field in a Redis hashkey, field, valueRedisResult
incrIncrement a key's integer valuekeyRedisResult
keysFind Redis keys matching a pattern[pattern]RedisResult
lpushPush values onto the head of a Redis listkey, valuesRedisResult
lrangeGet a range of elements from a Redis listkey, start, stopRedisResult
mgetGet the values of multiple Redis keyskeyslist
msetSet multiple Redis keys at oncekey_valuesRedisResult
setSet the value of a Redis keykey, value  [ex]RedisResult
setnxSet a key only if it does not existkey, valueRedisResult
ttlGet the remaining TTL of a keykeyRedisResult
typeGet the type of a keykeyRedisResult
Open Interactive Docs & Playground →

Full schema explorer, code generation, and live API testing