malkusch\lock\mutex\RedisMutex::isMajority PHP Метод

isMajority() приватный Метод

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