await redis.sadd("original", "a", "b", "c"); const moved = await redis.smove("original", "destination", "a"); // moved: 1 // original: ["b", "c"] // destination: ["a"]
Move a member from one set to another
1
0
Was this page helpful?