yii\redis\Cache::getValues PHP Метод

getValues() защищенный Метод

protected getValues ( $keys )
    protected function getValues($keys)
    {
        $response = $this->redis->executeCommand('MGET', $keys);
        $result = [];
        $i = 0;
        foreach ($keys as $key) {
            $result[$key] = $response[$i++];
        }
        return $result;
    }