Re: Indexing floating point number

2006-11-02 Thread Yonik Seeley
On 11/2/06, Nadav Har'El <[EMAIL PROTECTED]> wrote: On Wed, Nov 01, 2006, Yonik Seeley wrote about "Re: Indexing floating point number": > > longer strings than Solr's NumberTools. Moving to base 100 or even 256 > > (as I suggest in the comments) can el

Re: Indexing floating point number

2006-11-02 Thread Nadav Har'El
On Wed, Nov 01, 2006, Yonik Seeley wrote about "Re: Indexing floating point number": > > longer strings than Solr's NumberTools. Moving to base 100 or even 256 > > (as I suggest in the comments) can eliminate this difference. > > Or higher, depending on what

Re: Indexing floating point number

2006-11-01 Thread Yonik Seeley
On 11/1/06, Nadav Har'El <[EMAIL PROTECTED]> wrote: On Mon, Oct 30, 2006, Yonik Seeley wrote about "Re: Indexing floating point number": > On 10/30/06, KEGan <[EMAIL PROTECTED]> wrote: > >Newbie question. How do we index floating point number in Lucene, so th

Re: Indexing floating point number

2006-11-01 Thread Nadav Har'El
On Mon, Oct 30, 2006, Yonik Seeley wrote about "Re: Indexing floating point number": > On 10/30/06, KEGan <[EMAIL PROTECTED]> wrote: > >Newbie question. How do we index floating point number in Lucene, so that > >it > >is sortable ? There is a built-in u

Re: Indexing floating point number

2006-10-30 Thread Yonik Seeley
On 10/30/06, KEGan <[EMAIL PROTECTED]> wrote: Newbie question. How do we index floating point number in Lucene, so that it is sortable ? There is a built-in utility class 'NumberTools' which help with indexing integer. Does Lucene has the same mechanism for floating point number? You can look a

Indexing floating point number

2006-10-30 Thread KEGan
Hi, Newbie question. How do we index floating point number in Lucene, so that it is sortable ? There is a built-in utility class 'NumberTools' which help with indexing integer. Does Lucene has the same mechanism for floating point number? Thanks.