Method: Redis::Distributed#hincrbyfloat
- Defined in:
- lib/redis/distributed.rb
#hincrbyfloat(key, field, increment) ⇒ Object
Increment the numeric value of a hash field by the given float number.
864 865 866 |
# File 'lib/redis/distributed.rb', line 864 def hincrbyfloat(key, field, increment) node_for(key).hincrbyfloat(key, field, increment) end |