Redis Command

The Redis Command step allows you to execute commands and manage your Redis data source data.

Command examples

GET

Retrieves a string from the data store by key.

['GET', 'key']

SET

Sets the string with the key key to value something.

['SET', 'key', 'something']

DEL

Removes the value at key.

['DEL', 'key']

INCR

Increments the value at counter.

['INCR', 'counter']

LPUSH

Pushes the value to the left side of a list.

RPOP

Pops the value from the right side of a list.

HSET

Sets the values as a hash map.

HGET

Gets a specific property from a hash map.


For additional Redis commands, refer to their documentation.

Last updated

Was this helpful?