Method: Redis#zremrangebyscore
- Defined in:
- lib/redis.rb
#zremrangebyscore(key, min, max) ⇒ Fixnum
Remove all members in a sorted set within the given scores.
1685 1686 1687 1688 1689 |
# File 'lib/redis.rb', line 1685 def zremrangebyscore(key, min, max) synchronize do |client| client.call([:zremrangebyscore, key, min, max]) end end |