public final class CollationDocValuesField extends Field
SortedDocValuesField
.
This is more efficient that CollationKeyAnalyzer
if the field
only has one value: no uninversion is necessary to sort on the field,
locale-sensitive range queries can still work via DocValuesRangeQuery
,
and the underlying data structures built at index-time are likely more efficient
and use less memory than FieldCache.
Field.Store
boost, fieldsData, tokenStream, type
Constructor and Description |
---|
CollationDocValuesField(String name,
Collator collator)
Create a new ICUCollationDocValuesField.
|
Modifier and Type | Method and Description |
---|---|
String |
name()
Field name
|
void |
setStringValue(String value)
Expert: change the value of this field.
|
binaryValue, boost, fieldType, numericValue, readerValue, setBoost, setBytesValue, setBytesValue, setByteValue, setDoubleValue, setFloatValue, setIntValue, setLongValue, setReaderValue, setShortValue, setTokenStream, stringValue, tokenStream, tokenStreamValue, toString
public CollationDocValuesField(String name, Collator collator)
NOTE: you should not create a new one for each document, instead
just make one and reuse it during your indexing process, setting
the value via setStringValue(String)
.
name
- field namecollator
- Collator for generating collation keys.public String name()
IndexableField
name
in interface IndexableField
name
in class Field
public void setStringValue(String value)
Field
Expert: change the value of this field. This can be used during indexing to
re-use a single Field instance to improve indexing speed by avoiding GC
cost of new'ing and reclaiming Field instances. Typically a single
Document
instance is re-used as well. This helps most on small
documents.
Each Field instance should only be used once within a single
Document
instance. See ImproveIndexingSpeed for details.
setStringValue
in class Field