Return-Path: Delivered-To: apmail-lucene-solr-user-archive@locus.apache.org Received: (qmail 24012 invoked from network); 15 Sep 2006 14:24:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 15 Sep 2006 14:24:53 -0000 Received: (qmail 18248 invoked by uid 500); 15 Sep 2006 14:24:52 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 18162 invoked by uid 500); 15 Sep 2006 14:24:52 -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 18153 invoked by uid 99); 15 Sep 2006 14:24:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Sep 2006 07:24:52 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of yseeley@gmail.com designates 64.233.162.197 as permitted sender) Received: from [64.233.162.197] (HELO nz-out-0102.google.com) (64.233.162.197) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Sep 2006 07:24:42 -0700 Received: by nz-out-0102.google.com with SMTP id z6so1288305nzd for ; Fri, 15 Sep 2006 07:24:15 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=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; b=Xwx8+BVAM/vLXMF8VCNx2vkBYRK+bMDpqMepaWcNFRtLMsoYxOhGvdaNlvnHz/pEMS2MZp7AlFG3p5YEXxG1bG2Cnyy8f384e1rbk6QPUeF0QM4x9BofaekFeKfpKfdmEjKmGcXa2hg8CFZNroFIzQKXyuVr2pbeJkz7rRvCiXo= Received: by 10.35.15.11 with SMTP id s11mr17373170pyi; Fri, 15 Sep 2006 07:24:15 -0700 (PDT) Received: by 10.35.129.12 with HTTP; Fri, 15 Sep 2006 07:24:15 -0700 (PDT) Message-ID: Date: Fri, 15 Sep 2006 10:24:15 -0400 From: "Yonik Seeley" Sender: yseeley@gmail.com To: solr-user@lucene.apache.org Subject: Re: Index term list - using facets ? In-Reply-To: <62.212.120.67.1158308865.4872@ns0.ovh.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <62.212.120.67.1158308865.4872@ns0.ovh.net> X-Google-Sender-Auth: d6a985bfcdc9012a X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 9/15/06, Paul Terray wrote: > I think I am close to have a list of index terms, using facet searching. > However, I still have a question: I would like to limit the terms to a > query. My goal is to do a simple google suggest type of search (with just > one term), so I have to limit the terms to the first letters typed. Of > course, I can filter the facet results to get this, but it seems there > should be a better solution. So instead of documents matching field:foo* you want the actual terms matching field:foo* I think exposing lower level info from an index like this can make sense, but it's not currently supported. It might be nice to have a syntax to support it rather than continually adding more query args though. Some info that might make sense to "export": - terms matching prefix, wildcard, fuzzy, range, etc - docfreq of terms & number of docs in index -Yonik