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

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

public getSlotByKey ( $key )
    public function getSlotByKey($key)
    {
        $key = $this->extractKeyTag($key);
        $hash = $this->distributor->hash($key);
        $slot = $this->distributor->getSlot($hash);
        return $slot;
    }