Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

solrupdateresponse(3) [php man page]

SOLRUPDATERESPONSE(3)							 1						     SOLRUPDATERESPONSE(3)

The SolrUpdateResponse class

INTRODUCTION
Represents a response to an update request. CLASS SYNOPSIS
SolrUpdateResponse final SolrUpdateResponseextends SolrResponse Constants o const integer$SolrUpdateResponse::PARSE_SOLR_OBJ0 o const integer$SolrUpdateResponse::PARSE_SOLR_DOC1 Inherited properties o const integer$SolrResponse::PARSE_SOLR_OBJ0 o const integer$SolrResponse::PARSE_SOLR_DOC1 o protected integer$http_status o protected integer$parser_mode o protected bool$success o protected string$http_status_message o protected string$http_request_url o protected string$http_raw_request_headers o protected string$http_raw_request o protected string$http_raw_response_headers o protected string$http_raw_response o protected string$http_digested_response Methods o public SolrUpdateResponse::__construct (void ) o public void SolrUpdateResponse::__destruct (void ) Inherited methods o public string SolrResponse::getDigestedResponse (void ) o public int SolrResponse::getHttpStatus (void ) o public string SolrResponse::getHttpStatusMessage (void ) o public string SolrResponse::getRawRequest (void ) o public string SolrResponse::getRawRequestHeaders (void ) o public string SolrResponse::getRawResponse (void ) o public string SolrResponse::getRawResponseHeaders (void ) o public string SolrResponse::getRequestUrl (void ) o public SolrObject SolrResponse::getResponse (void ) o public bool SolrResponse::setParseMode ([int $parser_mode]) o public bool SolrResponse::success (void ) PREDEFINED CONSTANTS
SOLRUPDATERESPONSE CLASS CONSTANTS
o SolrUpdateResponse::PARSE_SOLR_OBJ -Documents should be parsed as SolrObject instances o SolrUpdateResponse::PARSE_SOLR_DOC -Documents should be parsed as SolrDocument instances. PHP Documentation Group SOLRUPDATERESPONSE(3)

Check Out this Related Man Page

SOLRDOCUMENT(3) 							 1							   SOLRDOCUMENT(3)

The SolrDocument class

INTRODUCTION
Represents a Solr document retrieved from a query response. CLASS SYNOPSIS
SolrDocument final SolrDocumentArrayAccessIteratorSerializable Constants o const integer$SolrDocument::SORT_DEFAULT1 o const integer$SolrDocument::SORT_ASC1 o const integer$SolrDocument::SORT_DESC2 o const integer$SolrDocument::SORT_FIELD_NAME1 o const integer$SolrDocument::SORT_FIELD_VALUE_COUNT2 o const integer$SolrDocument::SORT_FIELD_BOOST_VALUE4 Methods o public bool SolrDocument::addField (string $fieldName, string $fieldValue) o public bool SolrDocument::clear (void ) o public void SolrDocument::__clone (void ) o public SolrDocument::__construct (void ) o public SolrDocumentField SolrDocument::current (void ) o public bool SolrDocument::deleteField (string $fieldName) o public void SolrDocument::__destruct (void ) o public bool SolrDocument::fieldExists (string $fieldName) o public SolrDocumentField SolrDocument::__get (string $fieldName) o public SolrDocumentField SolrDocument::getField (string $fieldName) o public int SolrDocument::getFieldCount (void ) o public array SolrDocument::getFieldNames (void ) o public SolrInputDocument SolrDocument::getInputDocument (void ) o public bool SolrDocument::__isset (string $fieldName) o public string SolrDocument::key (void ) o public bool SolrDocument::merge (SolrDocument $sourceDoc, [bool $overwrite = true]) o public void SolrDocument::next (void ) o public bool SolrDocument::offsetExists (string $fieldName) o public SolrDocumentField SolrDocument::offsetGet (string $fieldName) o public void SolrDocument::offsetSet (string $fieldName, string $fieldValue) o public void SolrDocument::offsetUnset (string $fieldName) o public bool SolrDocument::reset (void ) o public void SolrDocument::rewind (void ) o public string SolrDocument::serialize (void ) o public bool SolrDocument::__set (string $fieldName, string $fieldValue) o public bool SolrDocument::sort (int $sortOrderBy, [int $sortDirection = SolrDocument::SORT_ASC]) o public array SolrDocument::toArray (void ) o public void SolrDocument::unserialize (string $serialized) o public bool SolrDocument::__unset (string $fieldName) o public bool SolrDocument::valid (void ) PREDEFINED CONSTANTS
o SolrDocument::SORT_DEFAULT -Default mode for sorting fields within the document. o SolrDocument::SORT_ASC -Sorts the fields in ascending order o SolrDocument::SORT_DESC -Sorts the fields in descending order o SolrDocument::SORT_FIELD_NAME -Sorts the fields by field name. o SolrDocument::SORT_FIELD_VALUE_COUNT -Sorts the fields by number of values in each field. o SolrDocument::SORT_FIELD_BOOST_VALUE -Sorts the fields by thier boost values. PHP Documentation Group SOLRDOCUMENT(3)
Man Page