public class PreAnalyzedField extends TextField implements HasImplicitIndexAnalyzer
Modifier and Type | Class and Description |
---|---|
static class |
PreAnalyzedField.ParseResult
This is a simple holder of a stored part and the collected states (tokens with attributes).
|
static interface |
PreAnalyzedField.PreAnalyzedParser
Parse the input and return the stored part and the tokens with attributes.
|
FieldType.DefaultAnalyzer, FieldType.MultiValueSelector
Modifier and Type | Field and Description |
---|---|
static String |
PARSER_IMPL
Init argument name.
|
autoGeneratePhraseQueries, enableGraphQueries, multiTermAnalyzer, synonymQueryStyle
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 |
---|
PreAnalyzedField() |
Modifier and Type | Method and Description |
---|---|
IndexableField |
createField(SchemaField field,
Object value)
Used for adding a document when a field needs to be created from a
type and a string.
|
static FieldType |
createFieldType(SchemaField field)
Utility method to create a
FieldType
based on the SchemaField |
IndexableField |
fromString(SchemaField field,
String val) |
Analyzer |
getIndexAnalyzer()
Overridden to return an analyzer consisting of a
PreAnalyzedTokenizer . |
Analyzer |
getQueryAnalyzer()
Returns the query analyzer defined via the schema, unless there is none,
in which case the index-time pre-analyzer is returned.
|
SortField |
getSortField(SchemaField field,
boolean top)
Returns the SortField instance that should be used to sort fields
of this type.
|
UninvertingReader.Type |
getUninversionType(SchemaField sf)
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 parser)
called to get the default value source (normally, from the
Lucene FieldCache.)
|
void |
init(IndexSchema schema,
Map<String,String> args)
subclasses should initialize themselves with the args provided
and remove valid arguments.
|
String |
toFormattedString(Field f)
Utility method to convert a field to a string that is parse-able by this
class.
|
void |
write(TextResponseWriter writer,
String name,
IndexableField f)
calls back to TextResponseWriter to write the field value
|
analyzeMultiTerm, getAutoGeneratePhraseQueries, getEnableGraphQueries, getFieldQuery, getMultiTermAnalyzer, getSpecializedRangeQuery, getSynonymQueryStyle, isExplicitMultiTermAnalyzer, isUtf8Field, marshalSortValue, setIsExplicitMultiTermAnalyzer, setMultiTermAnalyzer, supportsAnalyzers, toObject, unmarshalSortValue
checkSchemaField, checkSupportsDocValues, createField, createFields, getAnalyzerProperties, getClassArg, getDefaultMultiValueSelectorForSort, getDocValuesFormat, getExistenceQuery, getNamedPropertyValues, getNonFieldPropertyArgs, getNumberType, getNumericSort, getPostingsFormat, getPrefixQuery, getRangeQuery, getRewriteMethod, getSetQuery, getSimilarity, getSimilarityFactory, getSingleValueSource, getSortedNumericSortField, getSortedSetSortField, getSortField, getSpecializedExistenceQuery, getStringSort, getTypeName, hasProperty, indexedToReadable, indexedToReadable, isExplicitAnalyzer, isExplicitQueryAnalyzer, isMultiValued, isPointField, isPolyField, isTokenized, marshalBase64SortValue, marshalStringSortValue, multiValuedFieldCache, readableToIndexed, readableToIndexed, restrictProps, setArgs, setIndexAnalyzer, setIsExplicitAnalyzer, setIsExplicitQueryAnalyzer, setQueryAnalyzer, setSimilarity, storedToIndexed, storedToReadable, toExternal, toInternal, toNativeType, toObject, toString, treatUnboundedRangeAsExistence, unmarshalBase64SortValue, unmarshalStringSortValue, useDocValuesAsStored, write
public static final String PARSER_IMPL
PreAnalyzedField.PreAnalyzedParser
.public void init(IndexSchema schema, Map<String,String> args)
FieldType
public Analyzer getIndexAnalyzer()
PreAnalyzedTokenizer
.
NOTE: If an index analyzer is specified in the schema, it will be ignored.getIndexAnalyzer
in class FieldType
FieldType.getQueryAnalyzer()
public Analyzer getQueryAnalyzer()
<analyzer>
or <analyzer type="index">
, but no query-time
analyzer, the query analyzer returned here will be the index-time
analyzer specified in the schema rather than the pre-analyzer.getQueryAnalyzer
in class FieldType
FieldType.getIndexAnalyzer()
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 SortField getSortField(SchemaField field, boolean top)
FieldType
public ValueSource getValueSource(SchemaField field, QParser parser)
FieldType
getValueSource
in class TextField
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 TextField
sf
- field instancenull
(to disallow uninversion for the field)SchemaField.isUninvertible()
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 TextField
IOException
public String toFormattedString(Field f) throws IOException
f
- field to convertIOException
- If there is a low-level I/O error.public static FieldType createFieldType(SchemaField field)
FieldType
based on the SchemaField
public IndexableField fromString(SchemaField field, String val) throws Exception
Exception
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.