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.



749
750
751
# File 'lib/redis/distributed.rb', line 749

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