Mhincrby
Bun

method

RedisClient.hincrby

key: KeyLike,
field: string,
increment: string | number
): Promise<number>;

Increment the integer value of a hash field by the given number

@param key

The hash key

@param field

The field to increment

@param increment

The amount to increment by

@returns

Promise that resolves with the new value

Referenced types

type KeyLike = string | ArrayBufferView | Blob