Return-Path: X-Original-To: apmail-lucene-solr-user-archive@minotaur.apache.org Delivered-To: apmail-lucene-solr-user-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 99B0010E9D for ; Mon, 3 Mar 2014 06:06:08 +0000 (UTC) Received: (qmail 41559 invoked by uid 500); 3 Mar 2014 06:06:03 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 41153 invoked by uid 500); 3 Mar 2014 06:06:02 -0000 Mailing-List: contact solr-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-user@lucene.apache.org Delivered-To: mailing list solr-user@lucene.apache.org Received: (qmail 41131 invoked by uid 99); 3 Mar 2014 06:06:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Mar 2014 06:06:01 +0000 X-ASF-Spam-Status: No, hits=2.5 required=5.0 tests=FREEMAIL_ENVFROM_END_DIGIT,SPF_SOFTFAIL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: softfail (athena.apache.org: transitioning domain of sureshrk19@gmail.com does not designate 216.139.236.26 as permitted sender) Received: from [216.139.236.26] (HELO sam.nabble.com) (216.139.236.26) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Mar 2014 06:05:57 +0000 Received: from ben.nabble.com ([192.168.236.152]) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1WKM0O-0000UN-Ov for solr-user@lucene.apache.org; Sun, 02 Mar 2014 22:05:36 -0800 Date: Sun, 2 Mar 2014 22:05:36 -0800 (PST) From: sureshrk19 To: solr-user@lucene.apache.org Message-ID: <1393826736762-4120815.post@n3.nabble.com> In-Reply-To: References: <1393570457849-4120339.post@n3.nabble.com> <1393575407.9387.YahooMailNeo@web124705.mail.ne1.yahoo.com> <1393600695076-4120408.post@n3.nabble.com> <1393603392.73403.YahooMailNeo@web124702.mail.ne1.yahoo.com> <1393608629869-4120441.post@n3.nabble.com> <1393609023.35940.YahooMailNeo@web124703.mail.ne1.yahoo.com> <1393611166280-4120459.post@n3.nabble.com> Subject: Re: stopwords issue with edismax MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Jack, Thanks for the reply. Yes. your observation is right. I see, stopwords are not being ignore at query time. Say, I'm searching for 'bank of america'. I'm expecting 'of' should not be the part of search. But, here I see 'of' is being sent. Same is the query syntax for 'OR' and 'AND' operators and 'OR' is returning results as expected. But in my case, I want to use 'AND'. Here is debug query information... "parsedquery":"(+((DisjunctionMaxQuery((ent_name:bank^7.0 | all_text:bank | number:bank^3.0 | party:bank^3.0 | all_code:bank^2.0 | name:bank^5.0)) DisjunctionMaxQuery((number:of^3.0 | all_code:of^2.0)) DisjunctionMaxQuery((ent_name:america^7.0 | all_text:america | number:america^3.0 | party:america^3.0 | all_code:america^2.0 | name:america^5.0)))~3))/no_coord", "parsedquery_toString":"+(((ent_name:bank^7.0 | all_text:bank | number:bank^3.0 | party:bank^3.0 | all_code:bank^2.0 | name:bank^5.0) (number:of^3.0 | all_code:of^2.0) (ent_name:america^7.0 | all_text:america | number:america^3.0 | party:america^3.0 | all_code:america^2.0 | name:america^5.0))~3)" Is there any reason why 'stopwords' are not being ignored. I checked schema.xml for filter and the same is present: -- View this message in context: http://lucene.472066.n3.nabble.com/stopwords-issue-with-edismax-tp4120339p4120815.html Sent from the Solr - User mailing list archive at Nabble.com.