lPush(key: string, ...values: (string | number)[]): number
Parameter | Type | Description |
key | string | Key name. |
...values | (string | number)[] | Value. |
Type | Description |
number | On success, the length of the list after insertion is returned. |
import redis from "pts/redis";let client = new redis.Client("redis://:<password>@<host>:6379/0");export default function main() {let lPushResp = client.lPush("list", "foo");console.log(redis lPush $
{
lPushResp
}
); // 1}