Mzincrby
Bun

method

RedisClient.zincrby

key: KeyLike,
increment: number,
member: KeyLike
): Promise<number>;

Increment the score of a member in a sorted set

@param key

The sorted set key

@param increment

The increment value

@param member

The member to increment

@returns

Promise that resolves with the new score

Referenced types

type KeyLike = string | ArrayBufferView | Blob