You are here

protected function AcquiaSearchService::_sendRawGet in Acquia Search 6.3

Central method for making a GET operation against this Solr Server

@override

Overrides DrupalApacheSolrService::_sendRawGet

File

./Acquia_Search_Service.php, line 95

Class

AcquiaSearchService

Code

protected function _sendRawGet($url, $options = array()) {
  $nonce = $this
    ->prepareRequest($url, $options);
  $response = $this
    ->_makeHttpRequest($url, $options);
  $response = $this
    ->checkResponse($response);
  return $this
    ->authenticateResponse($response, $nonce, $url);
}