|
The SolrResponse classIntroductionRepresents a response from the Solr server. Class synopsisSolrResponse
abstract
class SolrResponse
{
/* Constants */
const
int
SolrResponse::PARSE_SOLR_OBJ = 0;
const
int
SolrResponse::PARSE_SOLR_DOC = 1;
/* Properties */
protected
int
$http_status;
protected
int
$parser_mode;
protected
bool
$success;
protected
string
$http_status_message;
protected
string
$http_request_url;
protected
string
$http_raw_request_headers;
protected
string
$http_raw_request;
protected
string
$http_raw_response_headers;
protected
string
$http_raw_response;
protected
string
$http_digested_response;
/* Methods */
public string getDigestedResponse()
public int getHttpStatus()
public string getHttpStatusMessage()
public string getRawRequest()
public string getRawRequestHeaders()
public string getRawResponse()
public string getRawResponseHeaders()
public string getRequestUrl()
public SolrObject getResponse()
public bool setParseMode(int
$parser_mode = 0)public bool success()
}Properties
Predefined ConstantsSolrResponse Class Constants
|