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 78286F83C for ; Mon, 8 Apr 2013 07:51:29 +0000 (UTC) Received: (qmail 44532 invoked by uid 500); 8 Apr 2013 07:51:26 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 44428 invoked by uid 500); 8 Apr 2013 07:51:25 -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 44402 invoked by uid 99); 8 Apr 2013 07:51:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Apr 2013 07:51:25 +0000 X-ASF-Spam-Status: No, hits=2.0 required=5.0 tests=SPF_NEUTRAL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: 216.139.236.26 is neither permitted nor denied by domain of amit.mallik@gmail.com) Received: from [216.139.236.26] (HELO sam.nabble.com) (216.139.236.26) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Apr 2013 07:51:19 +0000 Received: from ben.nabble.com ([192.168.236.152]) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1UP6qw-000563-R0 for solr-user@lucene.apache.org; Mon, 08 Apr 2013 00:50:58 -0700 Date: Mon, 8 Apr 2013 00:50:58 -0700 (PDT) From: amit To: solr-user@lucene.apache.org Message-ID: <1365407458804-4054442.post@n3.nabble.com> Subject: edismax returns very less matches than regular MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org I have a simple system. I put the title of webpages into the "name" field and content of the web pages into the "Description" field. I want to search both fields and give the name a little more boost. A search on name field or description field returns records cloase to hundreds. http://localhost:8983/solr/select/?q=name:%28coldfusion^2%20cache^1%29&fq=author:[*%20TO%20*]%20AND%20-author:chinmoyp&start=0&rows=10&fl=author,score,%20id But search on both fields using boost just gives 5 matches. http://localhost:8983/solr/mindfire/?q=%28%20coldfusion^2%20cache^1%29*&defType=edismax&qf=name^1.5%20description^1.0*&fq=author:[*%20TO%20*]%20AND%20-author:chinmoyp&start=0&rows=10&fl=author,score,%20id I am wondering what is wrong, because there are valid results returned in 1st query which is ignored by edismax. I am on solr3.6 -- View this message in context: http://lucene.472066.n3.nabble.com/edismax-returns-very-less-matches-than-regular-tp4054442.html Sent from the Solr - User mailing list archive at Nabble.com.