Smile\ElasticsuiteCatalog\Model\Category\Indexer\Fulltext::executeFull PHP Метод

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

Execute full indexation
public executeFull ( ) : void
Результат void
    public function executeFull()
    {
        $storeIds = array_keys($this->storeManager->getStores());
        foreach ($storeIds as $storeId) {
            $dimension = $this->dimensionFactory->create(['name' => 'scope', 'value' => $storeId]);
            $this->indexerHandler->cleanIndex([$dimension]);
            $this->indexerHandler->saveIndex([$dimension], $this->fullAction->rebuildStoreIndex($storeId));
        }
    }