await redis.rpush("key", "a", "b", "c"); const element = await redis.rpop("key"); console.log(element); // "c"
Remove and return the last element(s) of a list
count
null
Was this page helpful?