Predis\Cluster\RedisStrategy::getSlotByKey PHP Метод

getSlotByKey() публичный Метод

public getSlotByKey ( $key )
    public function getSlotByKey($key)
    {
        $key = $this->extractKeyTag($key);
        $slot = $this->hashGenerator->hash($key) & 0x3fff;
        return $slot;
    }