Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
A field is a section of a Document. Each field has two parts, a name and a value. Values may be free text or they may be atomic keywords, which are not further processed. Such keywords may be used to represent dates, urls, etc. Fields are optionally stored in the index, so that they may be returned with hits on the document.
float $boost = '1.0'Field boost factor It's not stored directly in the index, but affects on normalization factor
Detailsstring $encoding = ''Field value encoding.
Detailsboolean $isBinary = 'false'Field is stored as binary.
Detailsboolean $isIndexed = 'true'Field is to be indexed, so that it may be searched on.
Detailsboolean $isStored = 'false'Field is to be stored in the index for return with search hits.
Detailsboolean $isTokenized = 'true'Field should be tokenized as text prior to indexing.
Detailsstring $name = ''Field name
Detailsboolean $storeTermVector = 'false'Field are stored as a term vector
Detailsboolean $value = ''Field value
Details__construct(
string $name, string $value, string $encoding, boolean $isStored, boolean $isIndexed, boolean $isTokenized, boolean $isBinary
=
false
)
:
Object constructor
Detailsbinary(
string $name, string $value
)
:
Zend_Search_Lucene_FieldConstructs a Binary String valued Field that is not tokenized nor indexed, but is stored in the index, for return with hits.
DetailsgetUtf8Value(
)
:
stringGet field value in UTF-8 encoding
Detailskeyword(
string $name, string $value, string $encoding
)
:
Zend_Search_Lucene_FieldConstructs a String-valued Field that is not tokenized, but is indexed and stored. Useful for non-text fields, e.g. date or url.
Detailstext(
string $name, string $value, string $encoding
)
:
Zend_Search_Lucene_FieldConstructs a String-valued Field that is tokenized and indexed, and is stored in the index, for return with hits. Useful for short text fields, like "title" or "subject". Term vector will not be stored for this field.
DetailsunIndexed(
string $name, string $value, string $encoding
)
:
Zend_Search_Lucene_FieldConstructs a String-valued Field that is not tokenized nor indexed, but is stored in the index, for return with hits.
DetailsunStored(
string $name, string $value, string $encoding
)
:
Zend_Search_Lucene_FieldConstructs a String-valued Field that is tokenized and indexed, but that is not stored in the index.
Details