rPop(key: string): string
Parameter | Type | Description |
key | string | Key name |
Type | Description |
string | On success, the last element in the list is returned. |
import redis from "pts/redis";let client = new redis.Client("redis://:<password>@<host>:6379/0");export default function main() {let rPushResp = client.rPush("list", "foo");console.log(redis rPush $
{
rPushResp
}
); // 1let rPopResp = client.rPop("list");console.log(redis rPop $
{
rPopResp
}
); // foo}