The SolrGenericResponse class

(PECL solr >= 0.9.2)

简介

Represents a response from the solr server.

类摘要

final SolrGenericResponse extends SolrResponse {
/* 常量 */
const int PARSE_SOLR_OBJ = 0 ;
const int PARSE_SOLR_DOC = 1 ;
/* 继承的属性 */
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 ;
/* 方法 */
public __construct ( )
public __destruct ( ) : void
/* 继承的方法 */
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
}

预定义常量

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.

目录