await redis.lpush("key", "a", "b", "c"); await redis.lset("key", 1, "d"); // list is now ["a", "d", "c"]
Set a value at a specific index.
OK
Was this page helpful?