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 289E0116B3 for ; Fri, 16 May 2014 22:51:51 +0000 (UTC) Received: (qmail 20018 invoked by uid 500); 16 May 2014 11:53:03 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 34721 invoked by uid 500); 16 May 2014 11:44:33 -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 57442 invoked by uid 99); 16 May 2014 11:18:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 May 2014 11:18:11 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of solr@elyograg.org designates 166.70.79.219 as permitted sender) Received: from [166.70.79.219] (HELO frodo.elyograg.org) (166.70.79.219) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 May 2014 13:39:45 +0000 Received: from localhost (localhost [127.0.0.1]) by frodo.elyograg.org (Postfix) with ESMTP id 655C094CF for ; Thu, 15 May 2014 07:39:24 -0600 (MDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=elyograg.org; h= content-transfer-encoding:content-type:content-type:mime-version :user-agent:from:from:subject:subject:date:date:references :in-reply-to:message-id:received:received; s=mail; t=1400161164; bh=k7J3r83I0SP7C/jwWgaZubHuYYVpqWBb4PhY0ZUzEEE=; b=DgRLMUTnhaBg L4FJiFS6kqQrlXV+JKBJYoZtFs+37hq6j81qNre4gkd8zLmJJhGRNlFT6CkFf7PA QU4h0BUnxO2K1dQ9cp1IV5oS2liUk4nT/Ztct1vmiVLkzrgMWWnk932M4uSWdW3S eWdlZF3pIk2uoiWqnQxjxG0mJQp3Vls= X-Virus-Scanned: Debian amavisd-new at frodo.elyograg.org Received: from frodo.elyograg.org ([127.0.0.1]) by localhost (frodo.elyograg.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NX0Nj0-gR76L for ; Thu, 15 May 2014 07:39:24 -0600 (MDT) Received: from admin.elyograg.org (localhost [127.0.0.1]) by frodo.elyograg.org (Postfix) with ESMTP id EF50B2F72 for ; Thu, 15 May 2014 07:39:23 -0600 (MDT) X-Squirrel-UserHash: Eg0bDQsXIhUlBAcODgUQDQJtHRcG X-Squirrel-FromHash: E1FRVF5TJ0U= Message-ID: <50a60d8d4a8a93e7ed1dd45bc7df94d4.squirrel@admin.elyograg.org> In-Reply-To: <2612095845154C7CB0559D6912793111@JackKrupansky14> References: <2612095845154C7CB0559D6912793111@JackKrupansky14> Date: Thu, 15 May 2014 07:39:24 -0600 Subject: Re: distrib=false is not honoring From: "Shawn Heisey" To: solr-user@lucene.apache.org User-Agent: SquirrelMail/1.4.21 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Checked: Checked by ClamAV on apache.org > The q.alt param specifies only the parameter to use if the q parameter is > missing. Could you verify whether that is really the case? Typically > solrconfig gives a default of "*:*" for the q parameter. Specifying a > query > via the q.alt parameter seems like a strange approach - what is your > rationale? As the author of a book about Solr, I'm sure you already know these things. For everyone else: The qt parameter only gets used if the handleSelect value on the request dispatcher configuration is true. When that is set, it chooses a request handler by name. This configuration value defaults to false since version 3.6, so that you can't use the /select handler to do other things, like /update. The q.alt parameter is applicable only to the dismax and edismax query parsers, and specifies the query to send to the standard query parser if the q parameter is blank or missing. It's most often defined as *:* to get all docs. The *:* value doesn't have any special meaning to the dismax parser. Thanks, Shawn