Dutch PHP Conference 2025 - Call For Papers

The SolrUpdateResponse class

(PECL solr >= 0.9.2)

Вступ

Represents a response to an update request.

Короткий огляд класу

final class SolrUpdateResponse 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;
/* Методи */
public __construct()
public __destruct()
/* Успадковані методи */
public SolrResponse::setParseMode(int $parser_mode = 0): bool
}

Попередньо визначені константи

SolrUpdateResponse Class Constants

SolrUpdateResponse::PARSE_SOLR_OBJ

Documents should be parsed as SolrObject instances

SolrUpdateResponse::PARSE_SOLR_DOC

Documents should be parsed as SolrDocument instances.

Зміст

add a note

User Contributed Notes

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