class Redis::Distributed

def zremrangebyscore(key, min, max)

Remove all members in a sorted set within the given scores.
def zremrangebyscore(key, min, max)
  node_for(key).zremrangebyscore(key, min, max)
end