Return-Path: X-Original-To: apmail-lucene-java-user-archive@www.apache.org Delivered-To: apmail-lucene-java-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 465D917820 for ; Tue, 30 Sep 2014 14:38:32 +0000 (UTC) Received: (qmail 94979 invoked by uid 500); 30 Sep 2014 14:38:30 -0000 Delivered-To: apmail-lucene-java-user-archive@lucene.apache.org Received: (qmail 94918 invoked by uid 500); 30 Sep 2014 14:38:30 -0000 Mailing-List: contact java-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-user@lucene.apache.org Delivered-To: mailing list java-user@lucene.apache.org Received: (qmail 94905 invoked by uid 99); 30 Sep 2014 14:38:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Sep 2014 14:38:30 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of SRS0=73aA1L=6X=basetechnology.com=jack@yourhostingaccount.com designates 65.254.253.99 as permitted sender) Received: from [65.254.253.99] (HELO walmailout02.yourhostingaccount.com) (65.254.253.99) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Sep 2014 14:38:25 +0000 Received: from mailscan13.yourhostingaccount.com ([10.1.15.13] helo=walmailscan13.yourhostingaccount.com) by walmailout02.yourhostingaccount.com with esmtp (Exim) id 1XYyZ3-0001pv-1K for java-user@lucene.apache.org; Tue, 30 Sep 2014 10:38:05 -0400 Received: from [10.114.3.33] (helo=walimpout13) by walmailscan13.yourhostingaccount.com with esmtp (Exim) id 1XYyZ2-0006s4-Vs for java-user@lucene.apache.org; Tue, 30 Sep 2014 10:38:04 -0400 Received: from walauthsmtp03.yourhostingaccount.com ([10.1.18.3]) by walimpout13 with id xSe11o00E03yUm201Se4fY; Tue, 30 Sep 2014 10:38:04 -0400 X-Authority-Analysis: v=2.1 cv=RpBLLUWK c=1 sm=1 tr=0 a=maIvl2Yd+fJND/e85XqkCw==:117 a=aeZlPULP3m51qeqftbZzWg==:17 a=pq4jwCggAAAA:8 a=OF-CdTOGAAAA:8 a=aQzbgH187woA:10 a=3jZET7lWBKwA:10 a=IkcTkHD0fZMA:10 a=jvYhGVW7AAAA:8 a=OA2lqS22AAAA:8 a=jHnwmIdYAAAA:8 a=mV9VRH-2AAAA:8 a=yPCof4ZbAAAA:8 a=yELHv9XZuy2x_SqQjPQA:9 a=QEXdDO2ut3YA:10 a=tkU_2VtFsn8A:10 a=nvb_D0C0S_gA:10 a=7DSvI1NPTFQA:10 Received: from 207-38-210-187.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com ([207.38.210.187]:53898 helo=JackKrupansky14) by walauthsmtp03.yourhostingaccount.com with esmtpa (Exim) id 1XYyYz-0003TF-HN for java-user@lucene.apache.org; Tue, 30 Sep 2014 10:38:01 -0400 Message-ID: <7A0F1E7D0FEF4AA8923E27ADC4718B8F@JackKrupansky14> From: "Jack Krupansky" To: References: <542ABCC8.1090808@oracle.com> In-Reply-To: <542ABCC8.1090808@oracle.com> Subject: Re: Term vectors Date: Tue, 30 Sep 2014 10:38:03 -0400 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="utf-8"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal Importance: Normal X-Mailer: Microsoft Windows Live Mail 16.4.3528.331 X-MimeOLE: Produced By Microsoft MimeOLE V16.4.3528.331 X-EN-UserInfo: e0a4b55451ed9f27313ebf02e3d4348d:931c98230c6409dcc37fa7e93b490c27 X-EN-AuthUser: jack@basetechnology.com Sender: "Jack Krupansky" X-EN-OrigIP: 207.38.210.187 X-EN-OrigHost: 207-38-210-187.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com X-Virus-Checked: Checked by ClamAV on apache.org My Solr Deep Dive e-book has a whole chapter on the Solr term vector search component, which is based on the Lucene term vector support. It won't help you directly for Java coding, but the examples may help illustrate what this feature can do. See: http://www.lulu.com/us/en/shop/jack-krupansky/solr-4x-deep-dive-early-access-release-7/ebook/product-21203548.html The free Solr Reference Guide has a short section on the Solr Term Vector component. You could check it out before buying my $10 e-book. See: https://cwiki.apache.org/confluence/display/solr/The+Term+Vector+Component -- Jack Krupansky -----Original Message----- From: John Cecere Sent: Tuesday, September 30, 2014 10:23 AM To: java-user@lucene.apache.org Subject: Term vectors I'm looking for documentation on how to use term vectors in Lucene. Specifically what I'd like be able to do is to return the positions of found search terms/phrases/etc. within a document. I've been able to find bits and pieces of information here and there, but no actual comprehensive documentation. The javadocs are more reference material than anything else. Can someone point me to some documentation on term vectors, how they work, and how to to use them? Thanks, John -- John Cecere Principal Engineer - Oracle Corporation 732-987-4317 / john.cecere@oracle.com --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.org For additional commands, e-mail: java-user-help@lucene.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.org For additional commands, e-mail: java-user-help@lucene.apache.org