The SolrGenericResponse class

(PECL solr >= 0.9.2)

Einführung

Represents a response from the solr server.

Klassenbeschreibung

final SolrGenericResponse extends SolrResponse {
/* Konstanten */
const int PARSE_SOLR_OBJ = 0 ;
const int PARSE_SOLR_DOC = 1 ;
/* Geerbte Eigenschaften */
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;
/* Methoden */
public __construct ( )
public __destruct ( ) : void
/* Geerbte Methoden */
public SolrResponse::getHttpStatus ( ) : int
public SolrResponse::getRawRequest ( ) : string
public SolrResponse::getRawResponse ( ) : string
public SolrResponse::getRequestUrl ( ) : string
public SolrResponse::setParseMode ( int $parser_mode = 0 ) : bool
public SolrResponse::success ( ) : bool
}

Vordefinierte Konstanten

SolrGenericResponse Class constants

SolrGenericResponse::PARSE_SOLR_OBJ

Documents should be parsed as SolrObject instances

SolrGenericResponse::PARSE_SOLR_DOC

Documents should be parsed as SolrDocument instances.

Inhaltsverzeichnis

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top