redis.hset("myhash", "field1", 5.5)

assert redis.hincrbyfloat("myhash", "field1", 10.1) - 15.6 < 0.0001

Arguments

key
str
required
The key of the hash.
field
str
required
The field to increment
increment
float
required
How much to increment the field by. Can be negative to subtract.

Response

The new value of the field after the increment.
redis.hset("myhash", "field1", 5.5)

assert redis.hincrbyfloat("myhash", "field1", 10.1) - 15.6 < 0.0001