org.apache.solr.schema
Class TrieDateField

java.lang.Object
  extended by org.apache.solr.schema.FieldProperties
      extended by org.apache.solr.schema.FieldType
          extended by org.apache.solr.schema.PrimitiveFieldType
              extended by org.apache.solr.schema.DateField
                  extended by org.apache.solr.schema.TrieDateField
All Implemented Interfaces:
DateValueFieldType

public class TrieDateField
extends DateField
implements DateValueFieldType

An extension of DateField that supports the same values and syntax, but indexes the value more efficiently using a numeric TrieField under the covers. See the description of DateField for more details of the supported usage.

NOTE: Allthough it is possible to configure a TrieDateField instance with a default value of "NOW" to compute a timestamp of when the document was indexed, this is not advisable when using SolrCloud since each replica of the document may compute a slightly different value. TimestampUpdateProcessorFactory is recomended instead.

See Also:
DateField, TrieField

Nested Class Summary
 
Nested classes/interfaces inherited from class org.apache.solr.schema.FieldType
FieldType.DefaultAnalyzer
 
Field Summary
 
Fields inherited from class org.apache.solr.schema.DateField
CANONICAL_LOCALE, CANONICAL_TZ, MATH_LOCALE, MATH_TZ, NOW, UTC, Z
 
Fields inherited from class org.apache.solr.schema.FieldType
analyzer, ANALYZER, args, CHAR_FILTER, CHAR_FILTERS, CLASS_NAME, docValuesFormat, falseProperties, FILTER, FILTERS, INDEX, INDEX_ANALYZER, log, MULTI_TERM, MULTI_TERM_ANALYZER, POLY_FIELD_SEPARATOR, postingsFormat, properties, QUERY, QUERY_ANALYZER, queryAnalyzer, similarity, SIMILARITY, similarityFactory, TOKENIZER, trueProperties, TYPE, TYPE_NAME, typeName
 
Fields inherited from class org.apache.solr.schema.FieldProperties
BINARY, DOC_VALUES, INDEXED, MULTIVALUED, OMIT_NORMS, OMIT_POSITIONS, OMIT_TF_POSITIONS, REQUIRED, SORT_MISSING_FIRST, SORT_MISSING_LAST, STORE_OFFSETS, STORE_TERMOFFSETS, STORE_TERMPOSITIONS, STORE_TERMVECTORS, STORED, TOKENIZED
 
Constructor Summary
TrieDateField()
           
 
Method Summary
 void checkSchemaField(SchemaField field)
          Check's SchemaField instances constructed using this field type to ensure that they are valid.
 IndexableField createField(SchemaField field, Object value, float boost)
          Used for adding a document when a field needs to be created from a type and a string.
 List<IndexableField> createFields(SchemaField field, Object value, float boost)
          Given a SchemaField, create one or more IndexableField instances
 FieldType.NumericType getNumericType()
          Return the numeric type of this field, or null if this field is not a numeric field.
 int getPrecisionStep()
           
 Query getRangeQuery(QParser parser, SchemaField sf, Date min, Date max, boolean minInclusive, boolean maxInclusive)
          DateField specific range query
 Query getRangeQuery(QParser parser, SchemaField field, String min, String max, boolean minInclusive, boolean maxInclusive)
          Returns a Query instance for doing range searches on this field type.
 SortField getSortField(SchemaField field, boolean top)
          Returns the SortField instance that should be used to sort fields of this type.
 ValueSource getValueSource(SchemaField field, QParser parser)
          called to get the default value source (normally, from the Lucene FieldCache.)
 CharsRef indexedToReadable(BytesRef input, CharsRef charsRef)
          Given an indexed term, append the human readable representation
 String indexedToReadable(String _indexedForm)
          Given an indexed term, return the human readable representation
protected  void init(IndexSchema schema, Map<String,String> args)
          subclasses should initialize themselves with the args provided and remove valid arguments.
 boolean isTokenized()
          Returns true if fields of this type should be tokenized
 Object marshalSortValue(Object value)
          Convert a value used by the FieldComparator for this FieldType's SortField into a marshalable value for distributed sorting.
 boolean multiValuedFieldCache()
          Returns true if a single field value of this type has multiple logical values for the purposes of faceting, sorting, etc.
 String readableToIndexed(String val)
          Given the readable value, return the term value that will match it.
 String storedToIndexed(IndexableField f)
          Given the stored field, return the indexed form
 String storedToReadable(IndexableField f)
          Given the stored field, return the human readable representation
 String toExternal(IndexableField f)
          Convert the stored-field format to an external (string, human readable) value
 String toInternal(String val)
          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).
 Date toObject(IndexableField f)
          Convert the stored-field format to an external object.
 Object toObject(SchemaField sf, BytesRef term)
           
 Object unmarshalSortValue(Object value)
          Convert a value marshaled via FieldType.marshalSortValue(java.lang.Object) back into a value usable by the FieldComparator for this FieldType's SortField
 void write(TextResponseWriter writer, String name, IndexableField f)
          calls back to TextResponseWriter to write the field value
 
Methods inherited from class org.apache.solr.schema.DateField
formatDate, formatExternal, getThreadLocalDateFormat, parseDate, parseDateLenient, parseMath, parseMathLenient, toExternal, toInternal, toObject
 
Methods inherited from class org.apache.solr.schema.FieldType
createField, getAnalyzer, getAnalyzerProperties, getClassArg, getDocValuesFormat, getFieldQuery, getIndexOptions, getNamedPropertyValues, getNonFieldPropertyArgs, getPostingsFormat, getPrefixQuery, getQueryAnalyzer, getRewriteMethod, getSimilarity, getSimilarityFactory, getStringSort, getTypeName, hasProperty, isExplicitAnalyzer, isExplicitQueryAnalyzer, isMultiValued, isPolyField, marshalBase64SortValue, marshalStringSortValue, readableToIndexed, restrictProps, setAnalyzer, setArgs, setIsExplicitAnalyzer, setIsExplicitQueryAnalyzer, setQueryAnalyzer, setSimilarity, toString, unmarshalBase64SortValue, unmarshalStringSortValue
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TrieDateField

public TrieDateField()
Method Detail

init

protected void init(IndexSchema schema,
                    Map<String,String> args)
Description copied from class: FieldType
subclasses should initialize themselves with the args provided and remove valid arguments. leftover arguments will cause an exception. Common boolean properties have already been handled.

Overrides:
init in class PrimitiveFieldType

toObject

public Date toObject(IndexableField f)
Description copied from class: FieldType
Convert the stored-field format to an external object.

Overrides:
toObject in class DateField
See Also:
FieldType.toInternal(java.lang.String)

toObject

public Object toObject(SchemaField sf,
                       BytesRef term)
Overrides:
toObject in class FieldType

getSortField

public SortField getSortField(SchemaField field,
                              boolean top)
Description copied from class: FieldType
Returns the SortField instance that should be used to sort fields of this type.

Overrides:
getSortField in class DateField
See Also:
SchemaField.checkSortability()

marshalSortValue

public Object marshalSortValue(Object value)
Description copied from class: FieldType
Convert a value used by the FieldComparator for this FieldType's SortField into a marshalable value for distributed sorting.

Overrides:
marshalSortValue in class DateField

unmarshalSortValue

public Object unmarshalSortValue(Object value)
Description copied from class: FieldType
Convert a value marshaled via FieldType.marshalSortValue(java.lang.Object) back into a value usable by the FieldComparator for this FieldType's SortField

Overrides:
unmarshalSortValue in class DateField

getValueSource

public ValueSource getValueSource(SchemaField field,
                                  QParser parser)
Description copied from class: FieldType
called to get the default value source (normally, from the Lucene FieldCache.)

Overrides:
getValueSource in class DateField

getPrecisionStep

public int getPrecisionStep()
Returns:
the precisionStep used to index values into the field

getNumericType

public FieldType.NumericType getNumericType()
Description copied from class: FieldType
Return the numeric type of this field, or null if this field is not a numeric field.

Overrides:
getNumericType in class FieldType

write

public void write(TextResponseWriter writer,
                  String name,
                  IndexableField f)
           throws IOException
Description copied from class: FieldType
calls back to TextResponseWriter to write the field value

Overrides:
write in class DateField
Throws:
IOException

isTokenized

public boolean isTokenized()
Description copied from class: FieldType
Returns true if fields of this type should be tokenized

Overrides:
isTokenized in class FieldType

multiValuedFieldCache

public boolean multiValuedFieldCache()
Description copied from class: FieldType
Returns true if a single field value of this type has multiple logical values for the purposes of faceting, sorting, etc. Text fields normally return true since each token/word is a logical value.

Overrides:
multiValuedFieldCache in class FieldType

storedToReadable

public String storedToReadable(IndexableField f)
Description copied from class: FieldType
Given the stored field, return the human readable representation

Overrides:
storedToReadable in class FieldType

readableToIndexed

public String readableToIndexed(String val)
Description copied from class: FieldType
Given the readable value, return the term value that will match it.

Overrides:
readableToIndexed in class FieldType

toInternal

public String toInternal(String val)
Description copied from class: FieldType
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).

Overrides:
toInternal in class DateField
See Also:
FieldType.toExternal(org.apache.lucene.index.IndexableField)

toExternal

public String toExternal(IndexableField f)
Description copied from class: FieldType
Convert the stored-field format to an external (string, human readable) value

Overrides:
toExternal in class DateField
See Also:
FieldType.toInternal(java.lang.String)

indexedToReadable

public String indexedToReadable(String _indexedForm)
Description copied from class: FieldType
Given an indexed term, return the human readable representation

Overrides:
indexedToReadable in class DateField

indexedToReadable

public CharsRef indexedToReadable(BytesRef input,
                                  CharsRef charsRef)
Description copied from class: FieldType
Given an indexed term, append the human readable representation

Overrides:
indexedToReadable in class DateField

storedToIndexed

public String storedToIndexed(IndexableField f)
Description copied from class: FieldType
Given the stored field, return the indexed form

Overrides:
storedToIndexed in class FieldType

createField

public IndexableField createField(SchemaField field,
                                  Object value,
                                  float boost)
Description copied from class: FieldType
Used for adding a document when a field needs to be created from a type and a string.

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.

Overrides:
createField in class DateField
See Also:
FieldType.toInternal(java.lang.String)

createFields

public List<IndexableField> createFields(SchemaField field,
                                         Object value,
                                         float boost)
Description copied from class: FieldType
Given a SchemaField, create one or more IndexableField instances

Overrides:
createFields in class FieldType
Parameters:
field - the SchemaField
value - The value to add to the field
boost - The boost to apply
Returns:
An array of IndexableField
See Also:
FieldType.createField(SchemaField, Object, float), FieldType.isPolyField()

getRangeQuery

public Query getRangeQuery(QParser parser,
                           SchemaField field,
                           String min,
                           String max,
                           boolean minInclusive,
                           boolean maxInclusive)
Description copied from class: FieldType
Returns a Query instance for doing range searches on this field type. 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.

Overrides:
getRangeQuery in class FieldType
Parameters:
parser - the QParser calling the method
field - the schema field
min - the lower boundary of the range, nulls are allowed.
max - the upper boundary of the range, nulls are allowed
minInclusive - whether the minimum of the range is inclusive or not
maxInclusive - whether the maximum of the range is inclusive or not
Returns:
a Query instance to perform range search according to given parameters

getRangeQuery

public Query getRangeQuery(QParser parser,
                           SchemaField sf,
                           Date min,
                           Date max,
                           boolean minInclusive,
                           boolean maxInclusive)
Description copied from class: DateField
DateField specific range query

Overrides:
getRangeQuery in class DateField

checkSchemaField

public void checkSchemaField(SchemaField field)
Description copied from class: FieldType
Check's SchemaField instances constructed using this field type to ensure that they are valid.

This method is called by the SchemaField constructor to check that it's initialization does not violate any fundemental requirements of the FieldType. The default implementation does nothing, but subclasses may chose to throw a SolrException if invariants are violated by the SchemaField.

Overrides:
checkSchemaField in class FieldType


Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.