Return-Path: Delivered-To: apmail-lucene-solr-user-archive@locus.apache.org Received: (qmail 88746 invoked from network); 29 Feb 2008 23:10:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Feb 2008 23:10:15 -0000 Received: (qmail 22669 invoked by uid 500); 29 Feb 2008 23:10:07 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 22646 invoked by uid 500); 29 Feb 2008 23:10:07 -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 22636 invoked by uid 99); 29 Feb 2008 23:10:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Feb 2008 15:10:07 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of yseeley@gmail.com designates 209.85.162.180 as permitted sender) Received: from [209.85.162.180] (HELO el-out-1112.google.com) (209.85.162.180) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Feb 2008 23:09:33 +0000 Received: by el-out-1112.google.com with SMTP id p32so3884510elf.15 for ; Fri, 29 Feb 2008 15:09:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; bh=58SqXP2gBbzHpKbKpkW6QSEpSWbAWSZ8sgEhV/1VPJg=; b=qTPKYvzVE4flxTkVF8lw4GvcvwQh8PmqzPG2+/szgoMCh3O7Ft4/a32tIDXRI1GMMQNOoghxdnJR3AgaUwb+Oxf14hkDagsgj0kcZ0YPdQqDYGznSSzRkhUtswh/evUMROJ8yAnYvcAY9uV/uhcQSq6d/Te8Qc+nalOUwTnuvrU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=uLc9G+R2hr22kjwmdHasFqV5OuS18+Zj+CuW8WhYJ9VtQgv4bXEc0kcApbFYnqPC3Xh6qOn0F06IfOo0Qtt3nMiymBVAWNAcRgf3boNVaEqMwMQmVd2HKQP48kp9DipZt6tuRtUgwEcCIaVWDDiAu7edNPMH+gXMtXTlmuuATdw= Received: by 10.115.22.1 with SMTP id z1mr12427625wai.33.1204326573173; Fri, 29 Feb 2008 15:09:33 -0800 (PST) Received: by 10.115.17.5 with HTTP; Fri, 29 Feb 2008 15:09:33 -0800 (PST) Message-ID: Date: Fri, 29 Feb 2008 18:09:33 -0500 From: "Yonik Seeley" Sender: yseeley@gmail.com To: solr-user@lucene.apache.org Subject: Re: Facet numFound for facet values? In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: X-Google-Sender-Auth: d5ce94716348278f X-Virus-Checked: Checked by ClamAV on apache.org On Fri, Feb 29, 2008 at 5:37 PM, Matt M. wrote: > I'm trying to find a way to paginate through facet values. But it seems that > there is not a way to get the total number of values (numFound) under a > given facet field? If you include zero counts, it's the same for every query, and you could get the total number of terms in a field from the luke handler. Otherwise, that info is not calculated, and would be much more expensive to calculate. -Yonik