public function SolrConnectorPluginBase::pingCore in Search API Solr 4.x
Same name and namespace in other branches
- 8.3 src/SolrConnector/SolrConnectorPluginBase.php \Drupal\search_api_solr\SolrConnector\SolrConnectorPluginBase::pingCore()
- 8 src/SolrConnector/SolrConnectorPluginBase.php \Drupal\search_api_solr\SolrConnector\SolrConnectorPluginBase::pingCore()
- 8.2 src/SolrConnector/SolrConnectorPluginBase.php \Drupal\search_api_solr\SolrConnector\SolrConnectorPluginBase::pingCore()
Pings the Solr core to tell whether it can be accessed.
Parameters
array $options: (optional) An array of options.
Return value
mixed The latency in milliseconds if the core can be accessed, otherwise FALSE.
Overrides SolrConnectorInterface::pingCore
3 calls to SolrConnectorPluginBase::pingCore()
- Solr36Connector::pingServer in modules/
search_api_solr_legacy/ src/ Plugin/ SolrConnector/ Solr36Connector.php - Pings the Solr server to tell whether it can be accessed.
- StandardSolrCloudConnector::pingCollection in src/
Plugin/ SolrConnector/ StandardSolrCloudConnector.php - Pings the Solr collection to tell whether it can be accessed.
- StandardSolrCloudConnector::pingCore in src/
Plugin/ SolrConnector/ StandardSolrCloudConnector.php - Pings the Solr core to tell whether it can be accessed.
1 method overrides SolrConnectorPluginBase::pingCore()
- StandardSolrCloudConnector::pingCore in src/
Plugin/ SolrConnector/ StandardSolrCloudConnector.php - Pings the Solr core to tell whether it can be accessed.
File
- src/
SolrConnector/ SolrConnectorPluginBase.php, line 597
Class
- SolrConnectorPluginBase
- Defines a base class for Solr connector plugins.
Namespace
Drupal\search_api_solr\SolrConnectorCode
public function pingCore(array $options = []) {
return $this
->pingEndpoint(NULL, $options);
}