Method: Redis::Commands::SortedSets#zremrangebyscore
- Defined in:
- lib/redis/commands/sorted_sets.rb
#zremrangebyscore(key, min, max) ⇒ Integer
Remove all members in a sorted set within the given scores.
591 592 593 |
# File 'lib/redis/commands/sorted_sets.rb', line 591 def zremrangebyscore(key, min, max) send_command([:zremrangebyscore, key, min, max]) end |