Skip to main content
DevTools24

Redis Command Builder

Construye comandos Redis visualmente. Genera comandos para strings, hashes, listas, sets y sorted sets.

SET
Set string value
GET
Get string value
MSET
Set multiple keys
MGET
Get multiple keys
INCR
Increment integer value
INCRBY
Increment by value
DECR
Decrement integer value
APPEND
Append to string
STRLEN
Get string length
SETEX
Set with expiration
Select a command from the list
redis-cli -h localhost -p 6379

Comandos Redis - Detalles técnicos

Redis es un almacén de estructuras de datos en memoria usado como caché y message broker. Tipos de datos clave: strings (GET/SET), hashes (HGET/HSET), listas (LPUSH/RPOP), sets (SADD/SMEMBERS) y sorted sets (ZADD/ZRANGE). Usa EXPIRE para TTL.

Alternativa de línea de comandos

# Common Redis operations
SET user:1 '{"name":"John"}' EX 3600
HSET user:1:profile name John age 30
LPUSH queue:jobs job1 job2

Referencia

Ver especificación oficial