malkusch\lock\mutex\RedisMutex::isMajority PHP Method

isMajority() private method

Returns if a count is the majority of all servers.
private isMajority ( integer $count ) : boolean
$count integer The count.
return boolean True if the count is the majority.
    private function isMajority($count)
    {
        return $count > count($this->redisAPIs) / 2;
    }