class FakeRedis::ZSet

def select_by_score min, max

def select_by_score min, max
  min = _floatify(min, true)
  max = _floatify(max, false)
  select {|_,v| v >= min && v <= max }
end