@Deprecated public class TrieField extends NumericFieldType
LegacyIntField
, LegacyLongField
, LegacyFloatField
and
LegacyDoubleField
.
See LegacyNumericRangeQuery
for more details.
It supports integer, float, long, double and date types.
For each number being added to this field, multiple terms are generated as per the algorithm described in the above link. The possible number of terms increases dramatically with lower precision steps. For the fast range search to work, trie fields must be indexed.
Trie fields are sortable in numerical order and can be used in function queries.
Note that if you use a precisionStep of 32 for int/float and 64 for long/double/date, then multiple terms will not be generated, range search will be no faster than any other number field, but sorting will still be possible.
LegacyNumericRangeQuery
FieldType.DefaultAnalyzer, FieldType.MultiValueSelector
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_PRECISION_STEP
Deprecated.
|
protected int |
precisionStep
Deprecated.
|
protected int |
precisionStepArg
Deprecated.
|
doubleOrFloat, type
ANALYZER, args, AUTO_GENERATE_PHRASE_QUERIES, CHAR_FILTER, CHAR_FILTERS, CLASS_NAME, docValuesFormat, ENABLE_GRAPH_QUERIES, falseProperties, FILTER, FILTERS, INDEX, INDEX_ANALYZER, MULTI_TERM, MULTI_TERM_ANALYZER, POLY_FIELD_SEPARATOR, postingsFormat, properties, QUERY, QUERY_ANALYZER, similarity, SIMILARITY, similarityFactory, SYNONYM_QUERY_STYLE, TOKENIZER, trueProperties, TYPE, TYPE_NAME, typeName
BINARY, DOC_VALUES, INDEXED, LARGE_FIELD, MULTIVALUED, OMIT_NORMS, OMIT_POSITIONS, OMIT_TF_POSITIONS, REQUIRED, SORT_MISSING_FIRST, SORT_MISSING_LAST, STORE_OFFSETS, STORE_TERMOFFSETS, STORE_TERMPAYLOADS, STORE_TERMPOSITIONS, STORE_TERMVECTORS, STORED, TOKENIZED, UNINVERTIBLE, USE_DOCVALUES_AS_STORED
Constructor and Description |
---|
TrieField()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
IndexableField |
createField(SchemaField field,
Object value)
Deprecated.
Used for adding a document when a field needs to be created from a
type and a string.
|
List<IndexableField> |
createFields(SchemaField sf,
Object value)
Deprecated.
Given a
SchemaField , create one or more IndexableField instances |
Query |
getFieldQuery(QParser parser,
SchemaField field,
String externalVal)
Deprecated.
Returns a Query instance for doing searches against a field.
|
static String |
getMainValuePrefix(FieldType ft)
Deprecated.
expert internal use, subject to change.
|
int |
getPrecisionStep()
Deprecated.
|
ValueSource |
getSingleValueSource(FieldType.MultiValueSelector choice,
SchemaField field,
QParser parser)
Deprecated.
Method for dynamically building a ValueSource based on a single value of a multivalued field.
|
protected ValueSource |
getSingleValueSource(SortedSetSelector.Type choice,
SchemaField field)
Deprecated.
Helper method that will only be called for multivalued Trie fields that have doc values.
|
SortField |
getSortField(SchemaField field,
boolean reverse)
Deprecated.
Returns the SortField instance that should be used to sort fields
of this type.
|
protected Query |
getSpecializedRangeQuery(QParser parser,
SchemaField field,
String min,
String max,
boolean minInclusive,
boolean maxInclusive)
Deprecated.
Returns a Query instance for doing range searches on this field type.
|
UninvertingReader.Type |
getUninversionType(SchemaField sf)
Deprecated.
If DocValues is not enabled for a field, but it's indexed, docvalues can be constructed
on the fly (uninverted, aka fieldcache) on the first request to sort, facet, etc.
|
ValueSource |
getValueSource(SchemaField field,
QParser qparser)
Deprecated.
called to get the default value source (normally, from the
Lucene FieldCache.)
|
CharsRef |
indexedToReadable(BytesRef indexedForm,
CharsRefBuilder charsRef)
Deprecated.
Given an indexed term, append the human readable representation
|
String |
indexedToReadable(String _indexedForm)
Deprecated.
Given an indexed term, return the human readable representation
|
protected void |
init(IndexSchema schema,
Map<String,String> args)
Deprecated.
subclasses should initialize themselves with the args provided
and remove valid arguments.
|
boolean |
isTokenized()
Deprecated.
Returns true if fields of this type should be tokenized
|
boolean |
multiValuedFieldCache()
Deprecated.
Returns true if a single field value of this type has multiple logical values
for the purposes of faceting, sorting, etc.
|
void |
readableToIndexed(CharSequence val,
BytesRefBuilder result)
Deprecated.
Given the readable value, return the term value that will match it.
|
String |
readableToIndexed(String val)
Deprecated.
Given the readable value, return the term value that will match it.
|
String |
storedToIndexed(IndexableField f)
Deprecated.
Given the stored field, return the indexed form
|
String |
storedToReadable(IndexableField f)
Deprecated.
Given the stored field, return the human readable representation
|
String |
toExternal(IndexableField f)
Deprecated.
Convert the stored-field format to an external (string, human readable)
value
|
String |
toInternal(String val)
Deprecated.
Convert an external value (from XML update command or from query string)
into the internal format for both storing and indexing (which can be modified by any analyzers).
|
Object |
toObject(IndexableField f)
Deprecated.
Convert the stored-field format to an external object.
|
Object |
toObject(SchemaField sf,
BytesRef term)
Deprecated.
|
void |
write(TextResponseWriter writer,
String name,
IndexableField f)
Deprecated.
calls back to TextResponseWriter to write the field value
|
getDocValuesRangeQuery, getNumberType, getRangeQueryForFloatDoubleDocValues, getRangeQueryForMultiValuedDoubleDocValues, getRangeQueryForMultiValuedFloatDocValues, getSpecializedExistenceQuery, numericDocValuesRangeQuery, treatUnboundedRangeAsExistence
checkSupportsDocValues, getDefaultMultiValueSelectorForSort
checkSchemaField, createField, getAnalyzerProperties, getClassArg, getDocValuesFormat, getExistenceQuery, getIndexAnalyzer, getNamedPropertyValues, getNonFieldPropertyArgs, getNumericSort, getPostingsFormat, getPrefixQuery, getQueryAnalyzer, getRangeQuery, getRewriteMethod, getSetQuery, getSimilarity, getSimilarityFactory, getSortedNumericSortField, getSortedSetSortField, getSortField, getStringSort, getTypeName, hasProperty, isExplicitAnalyzer, isExplicitQueryAnalyzer, isMultiValued, isPointField, isPolyField, isUtf8Field, marshalBase64SortValue, marshalSortValue, marshalStringSortValue, restrictProps, setArgs, setIndexAnalyzer, setIsExplicitAnalyzer, setIsExplicitQueryAnalyzer, setQueryAnalyzer, setSimilarity, supportsAnalyzers, toNativeType, toString, unmarshalBase64SortValue, unmarshalSortValue, unmarshalStringSortValue, useDocValuesAsStored, write
public static final int DEFAULT_PRECISION_STEP
protected int precisionStepArg
protected int precisionStep
protected void init(IndexSchema schema, Map<String,String> args)
FieldType
init
in class PrimitiveFieldType
public Object toObject(IndexableField f)
FieldType
toObject
in class FieldType
FieldType.toInternal(java.lang.String)
public SortField getSortField(SchemaField field, boolean reverse)
FieldType
public UninvertingReader.Type getUninversionType(SchemaField sf)
FieldType
If DocValues is not enabled for a field, but it's indexed, docvalues can be constructed on the fly (uninverted, aka fieldcache) on the first request to sort, facet, etc. This specifies the structure to use.
This method will not be used if the field is (effectively) uninvertible="false"
getUninversionType
in class FieldType
sf
- field instancenull
(to disallow uninversion for the field)SchemaField.isUninvertible()
public ValueSource getValueSource(SchemaField field, QParser qparser)
FieldType
getValueSource
in class FieldType
public final ValueSource getSingleValueSource(FieldType.MultiValueSelector choice, SchemaField field, QParser parser)
FieldType
SchemaField
that is in fact not-multivalued, in which case it delegates to
FieldType.getValueSource(org.apache.solr.schema.SchemaField, org.apache.solr.search.QParser)
getSingleValueSource
in class FieldType
FieldType.MultiValueSelector
protected ValueSource getSingleValueSource(SortedSetSelector.Type choice, SchemaField field)
choice
- the selector Type to use, will never be nullfield
- the field to use, guaranteed to be multivalued.FieldType.getSingleValueSource(MultiValueSelector,SchemaField,QParser)
public void write(TextResponseWriter writer, String name, IndexableField f) throws IOException
FieldType
Sub-classes should prefer using FieldType.toExternal(IndexableField)
or FieldType.toObject(IndexableField)
to get the writeable external value of f
instead of directly using f.stringValue()
or f.binaryValue()
write
in class FieldType
IOException
public boolean isTokenized()
FieldType
isTokenized
in class FieldType
public boolean multiValuedFieldCache()
FieldType
multiValuedFieldCache
in class FieldType
public int getPrecisionStep()
protected Query getSpecializedRangeQuery(QParser parser, SchemaField field, String min, String max, boolean minInclusive, boolean maxInclusive)
FieldType
SolrQueryParser
currently passes part1
and part2
as null if they are '*' respectively. minInclusive
and maxInclusive
are both true
currently by SolrQueryParser but that may change in the future. Also, other QueryParser implementations may have
different semantics.
Sub-classes should override this method to provide their own range query implementation. They should strive to
handle nulls in part1
and/or part2
as well as unequal minInclusive
and maxInclusive
parameters gracefully.
This method does not, and should not, check for or handle existence queries, please look at FieldType.getRangeQuery(org.apache.solr.search.QParser, org.apache.solr.schema.SchemaField, java.lang.String, java.lang.String, boolean, boolean)
for that logic.
getSpecializedRangeQuery
in class FieldType
parser
- the QParser
calling the methodfield
- the schema fieldmin
- the lower boundary of the range, nulls are allowed.max
- the upper boundary of the range, nulls are allowedminInclusive
- whether the minimum of the range is inclusive or notmaxInclusive
- whether the maximum of the range is inclusive or notpublic Query getFieldQuery(QParser parser, SchemaField field, String externalVal)
FieldType
getFieldQuery
in class FieldType
parser
- The QParser
calling the methodfield
- The SchemaField
of the field to searchexternalVal
- The String representation of the value to searchQuery
instance. This implementation returns a TermQuery
but overriding queries may notpublic String storedToReadable(IndexableField f)
FieldType
storedToReadable
in class FieldType
public String readableToIndexed(String val)
FieldType
readableToIndexed
in class FieldType
public void readableToIndexed(CharSequence val, BytesRefBuilder result)
FieldType
result
parameter and write from offset 0readableToIndexed
in class FieldType
public String toInternal(String val)
FieldType
toInternal
in class FieldType
FieldType.toExternal(org.apache.lucene.index.IndexableField)
public String toExternal(IndexableField f)
FieldType
toExternal
in class FieldType
FieldType.toInternal(java.lang.String)
public String indexedToReadable(String _indexedForm)
FieldType
indexedToReadable
in class FieldType
public CharsRef indexedToReadable(BytesRef indexedForm, CharsRefBuilder charsRef)
FieldType
indexedToReadable
in class FieldType
public Object toObject(SchemaField sf, BytesRef term)
public String storedToIndexed(IndexableField f)
FieldType
storedToIndexed
in class FieldType
public IndexableField createField(SchemaField field, Object value)
FieldType
By default, the indexed value is the same as the stored value (taken from toInternal()). Having a different representation for external, internal, and indexed would present quite a few problems given the current Lucene architecture. An analyzer for adding docs would need to translate internal->indexed while an analyzer for querying would need to translate external->indexed.
The only other alternative to having internal==indexed would be to have internal==external. In this case, toInternal should convert to the indexed representation, toExternal() should do nothing, and createField() should *not* call toInternal, but use the external value and set tokenized=true to get Lucene to convert to the internal(indexed) form.
:TODO: clean up and clarify this explanation.createField
in class FieldType
FieldType.toInternal(java.lang.String)
public List<IndexableField> createFields(SchemaField sf, Object value)
FieldType
SchemaField
, create one or more IndexableField
instancescreateFields
in class FieldType
sf
- the SchemaField
value
- The value to add to the fieldIndexableField
FieldType.createField(SchemaField, Object)
,
FieldType.isPolyField()
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.