For 1), you need to copy it yourself, i.e. add another Field to the Lucene Document you are about to index, with the same (string, numeric, etc.) value from the first field.
For 2), it's best to use points (IntPoint, etc.) for range filtering. For 3), to search a boolean value, just map your boolean to a token, e.g. "true" and "false". Mike McCandless http://blog.mikemccandless.com On Mon, Aug 8, 2016 at 1:37 AM, lukes <[email protected]> wrote: > *Update(Found the answer for point 2).* > > > > -- > View this message in context: http://lucene.472066.n3. > nabble.com/Doing-Range-NUmber-queries-tp4290722p4290725.html > Sent from the Lucene - General mailing list archive at Nabble.com. >
