The SolrGenericResponse class

(PECL solr >= 0.9.2)

Introduction

Represents a response from the solr server.

Class synopsis

final SolrGenericResponse extends SolrResponse {
/* Constants */
const int PARSE_SOLR_OBJ = 0 ;
const int PARSE_SOLR_DOC = 1 ;
/* Inherited 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 __construct()
public __destruct(): void
/* Inherited methods */
public SolrResponse::setParseMode(int $parser_mode = 0): bool
public SolrResponse::success(): bool
}

Predefined Constants

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.

Table of Contents

add a note add a note

User Contributed Notes

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