Re: clarification on using docvalues for sorting

2016-07-04 Thread Alessandro Benedetti
This is a recurrent question, according to my knowledge docValues are not supported for analyzed fields ( even if the analysis is simply not tokenizing but only lowercasing). At the moment as Erick suggested I encourage you to do the lowercasing before the indexing phase, when you supply your data

Re: clarification on using docvalues for sorting

2016-06-23 Thread Erick Erickson
You'd have to lowercase when the doc is prepared I'd think. Best, Erick On Thu, Jun 23, 2016 at 4:49 PM, Jay Potharaju wrote: > Hi, > I am trying to do a case insensitive sorting on couple of fields. > For this I am doing the following > > omitNorms="true"> > > > > >

clarification on using docvalues for sorting

2016-06-23 Thread Jay Potharaju
Hi, I am trying to do a case insensitive sorting on couple of fields. For this I am doing the following Above would not allow using this datatype with docvalues. Docvalues can only be used with string & trie fields. And also docvalues are recommended for sorting & f