class FakeRedis::ZSet

def increment(key, val)

Increments the value of key by val
def increment(key, val)
  self[key] += _floatify(val)
end