Mhincrbyfloat
Bun

method

RedisClient.hincrbyfloat

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

Increment the float value of a hash field by the given amount

@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 as a string

Referenced types

type KeyLike = string | ArrayBufferView | Blob