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/12/20 16:52:21 UTC

Queries difference

Hello, I want to know is there a difference between queries:

+city(+London Amsterdam) +address(1_street 2_street)

And

+city(+London) +city(Amsterdam) +address(1_street)  +address(2_street)

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: Queries difference

Posted by Morus Walter <mo...@tanto.de>.
Alex Kiselevski writes:
> 
> Hello, I want to know is there a difference between queries:
> 
> +city(+London Amsterdam) +address(1_street 2_street)
> 
> And
> 
> +city(+London) +city(Amsterdam) +address(1_street)  +address(2_street)
> 
I guess you mean city:(... and so on.

The first query searches documents containing 'London' in city, scoring
results also containing Amsterdam higher, and containing 1_street or 2_street
in address.
The second query searches for documents containing both London and Amsterdam
in city and 1_street and 2_street in address.
Note the the + before London in the second query doesn't mean anything.

HTH
	Morus

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