首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

SolrResponse (class)

Introduction

(PECL solr >= 0.9.2)

Represents a response from the Solr server.

Class synopsis

abstract SolrResponse {

/* Constants */

const integer PARSE_SOLR_OBJ = 0 ;

const integer PARSE_SOLR_DOC = 1 ;

/* Properties */

protected integer $http_status ;

protected integer $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 */

代码语言:javascript
复制
public string getDigestedResponse ( void )
代码语言:javascript
复制
public int getHttpStatus ( void )
代码语言:javascript
复制
public string getHttpStatusMessage ( void )
代码语言:javascript
复制
public string getRawRequest ( void )
代码语言:javascript
复制
public string getRawRequestHeaders ( void )
代码语言:javascript
复制
public string getRawResponse ( void )
代码语言:javascript
复制
public string getRawResponseHeaders ( void )
代码语言:javascript
复制
public string getRequestUrl ( void )
代码语言:javascript
复制
public SolrObject getResponse ( void )
代码语言:javascript
复制
public bool setParseMode ([ int $parser_mode = 0 ] )
代码语言:javascript
复制
public bool success ( void )

}

Properties

http_status

The http status of the response.

parser_mode

Whether to parse the solr documents as SolrObject or SolrDocument instances.

success

Was there an error during the request

http_status_message

Detailed message on http status

http_request_url

The request URL

http_raw_request_headers

A string of raw headers sent during the request.

http_raw_request

The raw request sent to the server

http_raw_response_headers

Response headers from the Solr server.

http_raw_response

The response message from the server.

http_digested_response

The response in PHP serialized format.

Predefined Constants

SolrResponse Class Constants

SolrResponse::PARSE_SOLR_OBJ

Documents should be parsed as SolrObject instances

SolrResponse::PARSE_SOLR_DOC

Documents should be parsed as SolrDocument instances.

Table of Contents

  • SolrResponse::getDigestedResponse — Returns the XML response as serialized PHP data
  • SolrResponse::getHttpStatus — Returns the HTTP status of the response
  • SolrResponse::getHttpStatusMessage — Returns more details on the HTTP status
  • SolrResponse::getRawRequest — Returns the raw request sent to the Solr server
  • SolrResponse::getRawRequestHeaders — Returns the raw request headers sent to the Solr server
  • SolrResponse::getRawResponse — Returns the raw response from the server
  • SolrResponse::getRawResponseHeaders — Returns the raw response headers from the server
  • SolrResponse::getRequestUrl — Returns the full URL the request was sent to
  • SolrResponse::getResponse — Returns a SolrObject representing the XML response from the server
  • SolrResponse::setParseMode — Sets the parse mode
  • SolrResponse::success — Was the request a success

← SolrClient::threads

SolrResponse::getDigestedResponse →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com