Mincrby
Bun

method

RedisClient.incrby

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

Increment the integer value of a key by the given amount

@param key

The key to increment

@param increment

The amount to increment by

@returns

Promise that resolves with the new value after incrementing

Referenced types

type KeyLike = string | ArrayBufferView | Blob