class Redis::Distributed

def incrbyfloat(key, increment)

Increment the numeric value of a key by the given float number.
def incrbyfloat(key, increment)
  node_for(key).incrbyfloat(key, increment)
end