class Redis

def zcount(key, start, stop)

Count the members in a sorted set with scores within the given values.
def zcount(key, start, stop)
  synchronize do
    @client.call(:zcount, key, start, stop)
  end
end