Mincrbyfloat
Bun

method

RedisClient.incrbyfloat

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

Increment the float value of a key by the given amount

@param key

The key to increment

@param increment

The amount to increment by (can be a float)

@returns

Promise that resolves with the new value as a string after incrementing

Referenced types

type KeyLike = string | ArrayBufferView | Blob