protected function DrupalApacheSolrService::_sendRawGet in Apache Solr Search 8
Same name and namespace in other branches
- 6.3 Drupal_Apache_Solr_Service.php \DrupalApacheSolrService::_sendRawGet()
- 7 Drupal_Apache_Solr_Service.php \DrupalApacheSolrService::_sendRawGet()
Central method for making a GET operation against this Solr Server
4 calls to DrupalApacheSolrService::_sendRawGet()
- DrupalApacheSolrService::search in ./
Drupal_Apache_Solr_Service.php - Simple Search interface
- DrupalApacheSolrService::setLuke in ./
Drupal_Apache_Solr_Service.php - Sets $this->luke with the meta-data about the index from admin/luke.
- DrupalApacheSolrService::setStats in ./
Drupal_Apache_Solr_Service.php - Sets $this->stats with the information about the Solr Core form
- DrupalApacheSolrService::setSystemInfo in ./
Drupal_Apache_Solr_Service.php - Call the /admin/system servlet
File
- ./
Drupal_Apache_Solr_Service.php, line 479
Class
- DrupalApacheSolrService
- Starting point for the Solr API. Represents a Solr server resource and has methods for pinging, adding, deleting, committing, optimizing and searching.
Code
protected function _sendRawGet($url, $options = array()) {
$response = $this
->_makeHttpRequest($url, $options);
return $this
->checkResponse($response);
}