Mzscore
Bun

method

RedisClient.zscore

key: KeyLike,
member: string
): Promise<null | string>;

Get the score associated with the given member in a sorted set

@param key

The sorted set key

@param member

The member to get the score for

@returns

Promise that resolves with the score of the member as a string, or null if the member or key doesn't exist

Referenced types

type KeyLike = string | ArrayBufferView | Blob