You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@lucene.apache.org by Alex Kiselevski <AL...@Amdocs.com> on 2004/08/26 11:02:09 UTC

Range query problem

Hello,
I have a strange problem with range query "PERIOD:[1 TO 9]"
It works only if the second parameter is equals or less than 9
If it's greater than 9 , it finds no documents

Thanks in advance

Alex Kiselevsky
 Speech Technology		Tel:	972-9-776-43-46
R&D, Amdocs - Israel		Mobile:	972-53-63 50 38
mailto:alexkis@amdocs.com




The information contained in this message is proprietary of Amdocs,
protected from disclosure, and may be privileged.
The information is intended to be conveyed only to the designated recipient(s)
of the message. If the reader of this message is not the intended recipient,
you are hereby notified that any dissemination, use, distribution or copying of
this communication is strictly prohibited and may be unlawful.
If you have received this communication in error, please notify us immediately
by replying to the message and deleting it from your computer.
Thank you.

Re: Range query problem

Posted by Daniel Naber <da...@t-online.de>.
On Thursday 26 August 2004 11:02, Alex Kiselevski wrote:

> I have a strange problem with range query "PERIOD:[1 TO 9]"
> It works only if the second parameter is equals or less than 9
> If it's greater than 9 , it finds no documents

You have to store your numbers so that they will appear in the right order 
when sorted lexicographically, e.g. save 1 as 01 if you save numbers up to 
99, or as 0001 if you save numbers up to 9999. You also have to use this 
format for searching I think.

Regards
 Daniel

-- 
http://www.danielnaber.de

---------------------------------------------------------------------
To unsubscribe, e-mail: lucene-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: lucene-user-help@jakarta.apache.org