[
https://issues.apache.org/jira/browse/SOLR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Shalin Shekhar Mangar updated SOLR-940:
---------------------------------------
Attachment: SOLR-940.patch
New patch with the following changes:
# Supports int, float, long, double
# There are no separate classes for each type (too much boilerplate code),
instead they are folded into one -- TrieField
# Same as above for Tokenizer - TrieTokenizerFactory
# In the schema, one needs to specify an additional attribute 'type' when
declaring the field type, example:
{code:xml}
<fieldType name="tdouble" class="solr.TrieField" type="double" omitNorms="true"
positionIncrementGap="0" indexed="true" stored="false" />
{code}
# Precision step is now configurable and can be specified in field type
declaration, example:
{code:xml}
<fieldType name="tdouble16" class="solr.TrieField" type="double"
precisionStep="16"
omitNorms="true" positionIncrementGap="0" indexed="true" stored="false" />
{code}
# Test expanded for float, long, double types
TODO:
# Date type
# More javadocs?
# Update wiki
# Changes to example schema
> TrieRange support
> -----------------
>
> Key: SOLR-940
> URL: https://issues.apache.org/jira/browse/SOLR-940
> Project: Solr
> Issue Type: New Feature
> Reporter: Yonik Seeley
> Fix For: 1.4
>
> Attachments: SOLR-940.patch, SOLR-940.patch
>
>
> We need support in Solr for the new TrieRange Lucene functionality.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.