Method: Redis::Commands::SortedSets#zlexcount
- Defined in:
- lib/redis/commands/sorted_sets.rb
#zlexcount(key, min, max) ⇒ Integer
Count the members, with the same score in a sorted set, within the given lexicographical range.
443 444 445 |
# File 'lib/redis/commands/sorted_sets.rb', line 443 def zlexcount(key, min, max) send_command([:zlexcount, key, min, max]) end |