method
RedisClient.zscore
member: string
): Promise<null | number>;
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 number, or null if the member or key doesn't exist
Referenced types
type KeyLike = string | ArrayBufferView | Blob