public function Drupal_Apache_Solr_Service::getStats in Apache Solr Search 6.2
Same name and namespace in other branches
- 5.2 Drupal_Apache_Solr_Service.php \Drupal_Apache_Solr_Service::getStats()
- 6 Drupal_Apache_Solr_Service.php \Drupal_Apache_Solr_Service::getStats()
Get information about the Solr Core.
Returns a Simple XMl document
1 call to Drupal_Apache_Solr_Service::getStats()
- Drupal_Apache_Solr_Service::getStatsSummary in ./
Drupal_Apache_Solr_Service.php - Get summary information about the Solr Core.
File
- ./
Drupal_Apache_Solr_Service.php, line 114
Class
Code
public function getStats() {
if (!isset($this->stats)) {
$this
->setStats();
}
return $this->stats;
}