Re: Help using boolean operators

2010-04-20 Thread Erick Erickson
:this +field1:good +field1:string Is that ok to do. Thanks, Sandhya -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Tuesday, April 20, 2010 4:16 AM To: solr-user@lucene.apache.org Subject: Re: Help using boolean operators ?id you try parenthesizing: field1

Help using boolean operators

2010-04-19 Thread Sandhya Agarwal
Hello, I am confused about the proper usage of the Boolean operators, AND, OR and NOT. Could somebody please provide me an easy to understand explanation. Thanks, Sandhya

Re: Help using boolean operators

2010-04-19 Thread MitchK
: star AND wars standard-operator: AND title: star wars NOT sdi is the same as: title: star AND wars NOT sdi Hope this helps. Kind regards - Mitch -- View this message in context: http://n3.nabble.com/Help-using-boolean-operators-tp729102p729135.html Sent from the Solr - User mailing list

RE: Help using boolean operators

2010-04-19 Thread Sandhya Agarwal
this is not giving me the desired results. Thanks, Sandhya -Original Message- From: MitchK [mailto:mitc...@web.de] Sent: Monday, April 19, 2010 2:19 PM To: solr-user@lucene.apache.org Subject: Re: Help using boolean operators Hello Sandhya, title: star AND wars NOT sdi This query

RE: Help using boolean operators

2010-04-19 Thread Sandhya Agarwal
@lucene.apache.org Subject: RE: Help using boolean operators Thank You Mitch. I have a query mentioned below : (my defaultOperator is set to AND) (field1 : This is a good string AND field2 : This is a good string AND field3 : This is a good string AND (field4 : ASCIIDocument OR field4 : BinaryDocument

Re: Help using boolean operators

2010-04-19 Thread Erick Erickson
, are copied into text with copyField. Thanks, Sandhya -Original Message- From: Sandhya Agarwal [mailto:sagar...@opentext.com] Sent: Monday, April 19, 2010 2:55 PM To: solr-user@lucene.apache.org Subject: RE: Help using boolean operators Thank You Mitch. I have a query mentioned

Re: Help using boolean operators

2010-04-19 Thread MitchK
thing, Solr would search for the whole phrase (and only the whole phrase), or am I wrong? I would test it, if I can, but unfortunately it's not possible at the moment. Thank you! Mitch -- View this message in context: http://n3.nabble.com/Help-using-boolean-operators-tp729102p730051.html Sent

Re: Help using boolean operators

2010-04-19 Thread Erick Erickson
for the whole phrase (and only the whole phrase), or am I wrong? I would test it, if I can, but unfortunately it's not possible at the moment. Thank you! Mitch -- View this message in context: http://n3.nabble.com/Help-using-boolean-operators-tp729102p730051.html Sent from the Solr - User

Re: Help using boolean operators

2010-04-19 Thread Erik Hatcher
the whole thing, Solr would search for the whole phrase (and only the whole phrase), or am I wrong? I would test it, if I can, but unfortunately it's not possible at the moment. Thank you! Mitch -- View this message in context: http://n3.nabble.com/Help-using-boolean-operators- tp729102p730051.html

Re: Help using boolean operators

2010-04-19 Thread Erick Erickson
would test it, if I can, but unfortunately it's not possible at the moment. Thank you! Mitch -- View this message in context: http://n3.nabble.com/Help-using-boolean-operators-tp729102p730051.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Help using boolean operators

2010-04-19 Thread Erik Hatcher
at the moment. Thank you! Mitch -- View this message in context: http://n3.nabble.com/Help-using-boolean-operators-tp729102p730051.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: Help using boolean operators

2010-04-19 Thread Sandhya Agarwal
: Tuesday, April 20, 2010 4:16 AM To: solr-user@lucene.apache.org Subject: Re: Help using boolean operators ?id you try parenthesizing: field1:(This is a good string) You can try lots of things easily by going to http://localhost:8983/solr/admin/form.jsp and clicking the debug enable checkbox... HTH