Menu
Open source

Client.smembers(key)

Returns all the members of the set values stored at keys.

Parameters

ParameterTypeDescription
keystringkey holding the set to get the members of.

Returns

TypeResolves withRejected when
Promise<string[]>On success, the promise resolves with an array containing the values present in the set.

Example

JavaScript
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.sadd('myset', 'foo');
  await redisClient.sadd('myset', 'bar');
  await redisClient.sadd('myset', 'foo');

  const members = await redisClient.smembers('myset');
  if (members.length !== 2) {
    throw new Error('sismember should have length 2');
  }
}