Can't Use Redis Node to set key with list type

Can’t Use Redis Node to set key with list type

I want use redis node to save list type data, but it seems can’t save list data and throw an Exception: “ERR no such key”

My workflow

Hey @m0nit0r.evil,

Does data already exist as a key in Redis? On my local Redis instance if I run lset data 0 "test" I get the same error message.

redis> lset data 0 "test"
(error) no such key

It might be worth first the push option which appears to create the key if it doesn’t exist.