Msmove
Bun

method

RedisClient.smove

source: KeyLike,
destination: KeyLike,
member: string
): Promise<boolean>;

Move a member from one set to another

@param source

The source set key

@param destination

The destination set key

@param member

The member to move

@returns

Promise that resolves with true if the element was moved, false if it wasn't a member of source

Referenced types

type KeyLike = string | ArrayBufferView | Blob