Method: Redis::Distributed#zrange

Defined in:
lib/redis/distributed.rb

#zrange(key, start, stop, **options) ⇒ Object

Return a range of members in a sorted set, by index, score or lexicographical ordering.



698
699
700
# File 'lib/redis/distributed.rb', line 698

def zrange(key, start, stop, **options)
  node_for(key).zrange(key, start, stop, **options)
end