Return-Path: Delivered-To: apmail-lucene-java-user-archive@www.apache.org Received: (qmail 75475 invoked from network); 17 Feb 2010 16:21:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Feb 2010 16:21:36 -0000 Received: (qmail 85412 invoked by uid 500); 17 Feb 2010 16:21:34 -0000 Delivered-To: apmail-lucene-java-user-archive@lucene.apache.org Received: (qmail 85349 invoked by uid 500); 17 Feb 2010 16:21:34 -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 85339 invoked by uid 99); 17 Feb 2010 16:21:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Feb 2010 16:21:34 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of lists@nabble.com designates 216.139.236.158 as permitted sender) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Feb 2010 16:21:24 +0000 Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1Nhme7-0004C3-Cr for java-user@lucene.apache.org; Wed, 17 Feb 2010 08:21:03 -0800 Message-ID: <27626321.post@talk.nabble.com> Date: Wed, 17 Feb 2010 08:21:03 -0800 (PST) From: AlisonCallahan To: java-user@lucene.apache.org Subject: RE: PrefixQuery returning 0 results In-Reply-To: <27626268.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: alison.callahan@gmail.com References: <27625646.post@talk.nabble.com> <000d01caafea$770e62c0$652b2840$@de> <27626268.post@talk.nabble.com> X-Virus-Checked: Checked by ClamAV on apache.org Nevermind ... I wrote too soon ... It works!! Thank you Uwe Schindler! Alison Callahan AlisonCallahan wrote: > > Originally "subject" was indexed with ANALYZED ... I changed it to > NOT_ANALYZED (there was no "keyword" option for indexing in Lucene 3.0.0), > and I am still having the same problem. > > Thanks, > > Alison Callahan > > > Uwe Schindler wrote: >> >> How is "subject indexed"? >> >> I fit is indexed with ANALYZED not as keyword only, StandardAnalyzer will >> remove <, lowercase and so on. >> >> ----- >> Uwe Schindler >> H.-H.-Meier-Allee 63, D-28213 Bremen >> http://www.thetaphi.de >> eMail: uwe@thetaphi.de >> >> >>> -----Original Message----- >>> From: AlisonCallahan [mailto:alison.callahan@gmail.com] >>> Sent: Wednesday, February 17, 2010 4:39 PM >>> To: java-user@lucene.apache.org >>> Subject: PrefixQuery returning 0 results >>> >>> >>> I have indexed RDF in N-triple format (with three fields -- "subject", >>> "predicate", "object") and now am trying to query the index with a >>> PrefixQuery on the "subject" field. My test case is to get back all >>> documents whose subject field starts with the prefix ">> would >>> expect to get back all documents. Instead, the PrefixQuery returns 0 >>> documents. I have read and can't see why the PrefixQuery is returning 0 >>> results. >>> >>> Here is the relevant code: >>> >>> IndexReader n3reader = IndexReader.open(FSDirectory.open(new >>> File(index)), >>> true); >>> Searcher searcher = new IndexSearcher(n3reader); >>> Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_CURRENT); >>> >>> String test = ">> >>> Query nsQuery = new PrefixQuery(new Term("subject", test)); >>> >>> TopDocs hits = searcher.search(nsQuery, 10); >>> >>> System.out.println("Hits: "+hits.totalHits); >>> >>> This code prints out '0' hits ... Any suggestions for why this isn't >>> working?? Thanks, >>> >>> Alison Callahan >>> -- >>> View this message in context: http://old.nabble.com/PrefixQuery- >>> returning-0-results-tp27625646p27625646.html >>> Sent from the Lucene - Java Users mailing list archive at Nabble.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 >> >> >> > > -- View this message in context: http://old.nabble.com/PrefixQuery-returning-0-results-tp27625646p27626321.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.org For additional commands, e-mail: java-user-help@lucene.apache.org