I'm attempting to upgrade my project to Lucene 6.0, and have run into an
issue with sorting my results. My documents have a timestamp field that was
previously a StoredField with NumericType: Long. I've converted it to a
LongPoint, which seems to work fine for range queries.
My problem is that try
sorting it's the same rule for all field types: enable DocValues! You
> just have to add another field instance with same name using doc values
> (some numeric type).
>
> Uwe
>
> Am 26. Mai 2016 23:53:56 MESZ, schrieb Jeremy Friesen :
> >I'm attempting to upgrade my