Method: Redis#zremrangebyscore
- Defined in:
- lib/redis.rb
#zremrangebyscore(key, min, max) ⇒ Fixnum
Remove all members in a sorted set within the given scores.
1103 1104 1105 1106 1107 |
# File 'lib/redis.rb', line 1103 def zremrangebyscore(key, min, max) synchronize do @client.call [:zremrangebyscore, key, min, max] end end |