Method: Redis::Distributed#zcount

Defined in:
lib/redis/distributed.rb

#zcount(key, min, max) ⇒ Object

Get the number of members in a particular score range.



777
778
779
# File 'lib/redis/distributed.rb', line 777

def zcount(key, min, max)
  node_for(key).zcount(key, min, max)
end