Redis is an open-source, in-memory data structure store used as a database, cache, and message broker. It supports various data structures such as strings, hashes, lists, sets, and more.

Changelog

1 version
v1.0.0 Latest
  • Initial version.

Authentication

TypeDetails
API Key
Redis URL (text)
The Redis connection URL (e.g., rediss://default:password@host:port)

Actions

10
Delete Key icon

Delete Key

Delete a key from Redis.
Find Keys icon

Find Keys

Find keys matching a pattern using the SCAN command (non-blocking). Returns a maximum of 1,000 keys. Uses SCAN instead of KEYS to avoid blocking the Redis server.
Get List Length icon

Get List Length

Get the length of a Redis list.
Get Value icon

Get Value

Retrieve a value from Redis by key. Supports automatic type detection or manual type specification.
Get Info icon

Get Info

Returns information and statistics about the Redis server including server version, memory usage, connected clients, and other server metrics.
Increment Key icon

Increment Key

Atomically increment a key's value by 1. Creates the key with value 0 if it doesn't exist, then increments it.
Publish Message icon

Publish Message

Publish a message to a Redis pub/sub channel.
Pop From List icon

Pop From List

Remove and return an element from the head (left) or tail (right) of a Redis list.
Push To List icon

Push To List

Add an element to the head (left) or tail (right) of a Redis list.
Set Value icon

Set Value

Set a value in Redis with optional expiration. Supports multiple data types (string, hash, list, set).