Client.lpush(key, values)
Inserts all the specified values at the head of the list stored at key
. If key
does not exist, it is created as empty list before performing the push operations.
Parameters
Returns
Example
import redis from 'k6/experimental/redis';
// Instantiate a new redis client
const redisClient = new redis.Client('redis://localhost:6379');
export default async function () {
await redisClient.lpush('mylist', 'first');
await redisClient.rpush('mylist', 'second');
let item = await redisClient.lpop('mylist');
item = redisClient.rpush('mylist', item);
item = redisClient.rpop('mylist');
}