update : 2015.11.03
php.shukuma.com
|
The SolrDocument class
The SolrDocument class
(PECL solr >= 0.9.2)
소개
Represents a Solr document retrieved from a query response.
클래스 개요
public bool addField
( string $fieldName
, string $fieldValue
)
public bool clear
( void
)
public SolrDocumentField current
( void
)
public SolrDocumentField __get
( string $fieldName
)
public SolrDocumentField getField
( string $fieldName
)
public bool __isset
( string $fieldName
)
public string key
( void
)
public void next
( void
)
public SolrDocumentField offsetGet
( string $fieldName
)
public void offsetSet
( string $fieldName
, string $fieldValue
)
public bool reset
( void
)
public bool __set
( string $fieldName
, string $fieldValue
)
public bool sort
( int $sortOrderBy
[, int $sortDirection = SolrDocument::SORT_ASC
] )
public bool __unset
( string $fieldName
)
public bool valid
( void
)
}
예약 상수
SolrDocument::SORT_DEFAULT
-
Default mode for sorting fields within the document.
SolrDocument::SORT_ASC
-
Sorts the fields in ascending order
SolrDocument::SORT_DESC
-
Sorts the fields in descending order
SolrDocument::SORT_FIELD_NAME
-
Sorts the fields by field name.
SolrDocument::SORT_FIELD_VALUE_COUNT
-
Sorts the fields by number of values in each field.
SolrDocument::SORT_FIELD_BOOST_VALUE
-
Sorts the fields by thier boost values.
Table of Contents
|
|