Method: Redis::Distributed#zremrangebyscore

Defined in:
lib/redis/distributed.rb

#zremrangebyscore(key, min, max) ⇒ Object

Remove all members in a sorted set within the given scores.



782
783
784
# File 'lib/redis/distributed.rb', line 782

def zremrangebyscore(key, min, max)
  node_for(key).zremrangebyscore(key, min, max)
end