await redis.sadd("set", "a", "b", "c"); const members = await redis.smismember("set", ["a", "b", "d"]); console.log(members); // [1, 1, 0]
Check if multiple members exist in a set
0
1
Was this page helpful?