public function SolrBackendInterface::finalizeIndex in Search API Solr 4.x
Same name and namespace in other branches
- 8.3 src/SolrBackendInterface.php \Drupal\search_api_solr\SolrBackendInterface::finalizeIndex()
- 8.2 src/SolrBackendInterface.php \Drupal\search_api_solr\SolrBackendInterface::finalizeIndex()
Apply any finalization commands to a solr index.
Only if globally configured to do so and only the first time after changes to the index from the drupal side.
Parameters
\Drupal\search_api\IndexInterface $index: The Search API index entity.
Return value
bool TRUE if a finalization run, FALSE otherwise. FALSE doesn't indicate an error!
Throws
\Drupal\Component\Plugin\Exception\PluginException
\Drupal\search_api\SearchApiException
\Drupal\search_api_solr\SearchApiSolrException
1 method overrides SolrBackendInterface::finalizeIndex()
- SearchApiSolrBackend::finalizeIndex in src/
Plugin/ search_api/ backend/ SearchApiSolrBackend.php - Apply any finalization commands to a solr index.
File
- src/
SolrBackendInterface.php, line 313
Class
- SolrBackendInterface
- Defines an interface for Solr search backend plugins.
Namespace
Drupal\search_api_solrCode
public function finalizeIndex(IndexInterface $index);