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 015C5312F for ; Fri, 6 May 2011 13:28:43 +0000 (UTC) Received: (qmail 99683 invoked by uid 500); 6 May 2011 13:28:40 -0000 Delivered-To: apmail-lucene-java-user-archive@lucene.apache.org Received: (qmail 99640 invoked by uid 500); 6 May 2011 13:28:40 -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 99632 invoked by uid 99); 6 May 2011 13:28:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 May 2011 13:28:40 +0000 X-ASF-Spam-Status: No, hits=-5.0 required=5.0 tests=RCVD_IN_DNSWL_HI,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [212.243.6.182] (HELO mail.mysigninternational.com) (212.243.6.182) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 May 2011 13:28:34 +0000 Received: from localhost (localhost [127.0.0.1]) by mail.mysigninternational.com (Postfix) with ESMTP id 531E6C2121 for ; Fri, 6 May 2011 15:28:14 +0200 (CEST) Received: from mail.mysigninternational.com ([127.0.0.1]) by localhost (mysign-postfix1.INTERNET [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bBuDs6amp4Ql for ; Fri, 6 May 2011 15:28:13 +0200 (CEST) Received: from Exchange2007.mysigndomain.corp (unknown [192.168.13.8]) by mail.mysigninternational.com (Postfix) with ESMTP id 7C7EAC211B for ; Fri, 6 May 2011 15:28:13 +0200 (CEST) Received: from Exchange2007.mysigndomain.corp ([fe80::b93b:88fd:f694:bc31]) by Exchange2007.mysigndomain.corp ([fe80::b93b:88fd:f694:bc31%10]) with mapi; Fri, 6 May 2011 15:28:13 +0200 From: Clemens Wyss To: "java-user@lucene.apache.org" Date: Fri, 6 May 2011 15:28:11 +0200 Subject: AW: AW: AW: AW: AW: "fuzzy prefix" search Thread-Topic: AW: AW: AW: AW: "fuzzy prefix" search Thread-Index: AcwL6m32jzDasE8/Tm2u5iySFp3CKwABh6xw Message-ID: References: <000001cc08bf$19583a50$4c08aef0$@thetaphi.de> <796945.6397.qm@web130103.mail.mud.yahoo.com> <733611.86868.qm@web130122.mail.mud.yahoo.com> <855496.50707.qm@web130109.mail.mud.yahoo.com> <365633.65667.qm@web130104.mail.mud.yahoo.com> In-Reply-To: Accept-Language: de-DE, de-CH Content-Language: de-DE X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: de-DE, de-CH Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Virus-Checked: Checked by ClamAV on apache.org Our Lucene/indexing architecture allows any number of index data providers = to register and put their data into a central index. As every provider can/= does add his own specific fields to its documents there is no single schema= ,... And yes, this all works, except the problem I have with the "term inde= x" for term-autosuggestions > -----Urspr=FCngliche Nachricht----- > Von: Erick Erickson [mailto:erickerickson@gmail.com] > Gesendet: Freitag, 6. Mai 2011 14:37 > An: java-user@lucene.apache.org > Betreff: Re: AW: AW: AW: AW: "fuzzy prefix" search > > Well, Solr officially uses Lucene, but you'll do disappointingly little J= ava > coding. Which some people think is a plus :). > > The biggest issue will be making really, really sure that your schema.xml= file in > Solr reflects your use in the Lucene code Actually, I'd swallow the blue = pill > and just make the leap to Solr. I'd hazard the guess that it really depen= ds > upon the amount of customized Lucene code you've written in the > analyzers/tokenizers area. But even those are pretty transferable to Solr= as > plugins. > > Your Lucene background will help a lot when using Solr, BTW... > > As to your second question, you could just grab the Solr code and see if = you > can use/adapt the suggester code.... I confess I have no idea what that > involves, haven't been in that code.. > > I made the Lucene->Solr transition, and found after a while that I didn't= really > want to go back FWIW. > > Best > Erick > > On Thu, May 5, 2011 at 2:26 AM, Clemens Wyss > wrote: > > What I am looking for is the autosuggestion implemented here (@solr) > > > > http://search- > lucene.com/m/0QBv41ssGlh/suggestion&subj=3DAuto+Suggest > > > > How "easily" can I switch from plain Lucene to Solr? > > Or (even better), can I just make use of "solr-suggestion"? > > > > Clemens > > > >> -----Urspr=FCngliche Nachricht----- > >> Von: Otis Gospodnetic [mailto:otis_gospodnetic@yahoo.com] > >> Gesendet: Mittwoch, 4. Mai 2011 22:00 > >> An: java-user@lucene.apache.org > >> Betreff: Re: AW: AW: AW: AW: "fuzzy prefix" search > >> > >> We do have EdgeNGramTokenizer if that is what you are after. > >> See how Solr uses it here: > >> http://search- > >> > lucene.com/c/Solr:/src/java/org/apache/solr/analysis/EdgeNGramTokeniz > >> er > >> Factory.java||EdgeNGramTokenizer > >> > >> > >> Otis > >> ---- > >> Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch Lucene > >> ecosystem search :: http://search-lucene.com/ > >> > >> > >> > >> ----- Original Message ---- > >> > From: Clemens Wyss > >> > To: "java-user@lucene.apache.org" > >> > Sent: Wed, May 4, 2011 2:07:40 AM > >> > Subject: AW: AW: AW: AW: "fuzzy prefix" search > >> > > >> > I know this is just an example. > >> > But even the WhitespaceAnalyzer takes the words apart, which I > >> >don't want. I would like the phrases as they are (maximum 3 words, e= .g. > >> >"Merlot del Ticino", > >> >...) to be n-gram-ed. I hence want to have the n-grams. > >> > Mer > >> > Merl > >> > Merlo > >> > Merlot > >> > Merlot > >> > Merlot d > >> > ... > >> > > >> > Regards > >> > Clemens > >> > > -----Urspr=FCngliche Nachricht----- > >> > > Von: Otis Gospodnetic [mailto:otis_gospodnetic@yahoo.com] > >> > > Gesendet: Dienstag, 3. Mai 2011 23:12 > >> > > An: java-user@lucene.apache.org > >> > > Betreff: Re: AW: AW: AW: "fuzzy prefix" search > >> > > > >> > > Clemens - that's just an example. Stick another tokenizer in > >> > > there, like WhitespaceTokenizer in there, for example. > >> > > > >> > > Otis > >> > > ---- > >> > > Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch Lucene > >> > > ecosystem search :: http://search-lucene.com/ > >> > > > >> > > > >> > > > >> > > ----- Original Message ---- > >> > > > From: Clemens Wyss > >> > > > To: "java-user@lucene.apache.org" > >> > > > > >> > > > Sent: Tue, May 3, 2011 4:31:14 PM > >> > > > Subject: AW: AW: AW: "fuzzy prefix" search > >> > > > > >> > > > But doesn't the KeyWordTokenizer extract single words out oft > >> > > >he stream? I would like to create n-grams on the stream (field > >> > > >content) as > >> it > >> > > is... > >> > > > > >> > > > > -----Urspr=FCngliche Nachricht----- > >> > > > > Von: Otis Gospodnetic [mailto:otis_gospodnetic@yahoo.com] > >> > > > > Gesendet: Dienstag, 3. Mai 2011 21:31 > >> > > > > An: java-user@lucene.apache.org > >> > > > > Betreff: Re: AW: AW: "fuzzy prefix" search > >> > > > > > >> > > > > Clemens, > >> > > > > > >> > > > > Something a la: > >> > > > > > >> > > > > public TokenStream tokenStream (String fieldName, Reader r) > >> > > > > { > >> > > > > return nw EdgeNGramTokenFilter(new KeywordTokenizer(r), > >> > > > > EdgeNGramTokenFilter.Side.FRONT, 1, 4); } > >> > > > > > >> > > > > > >> > > > > Check out page 265 of Lucene in Action 2. > >> > > > > > >> > > > > Otis > >> > > > > ---- > >> > > > > Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch > >> > > > > Lucene ecosystem search :: http://search-lucene.com/ > >> > > > > > >> > > > > > >> > > > > > >> > > > > ----- Original Message ---- > >> > > > > > From: Clemens Wyss > >> > > > > > To: "java-user@lucene.apache.org" >> user@lucene.apache.org> > >> > > > > > Sent: Tue, May 3, 2011 12:57:39 PM > >> > > > > > Subject: AW: AW: "fuzzy prefix" search > >> > > > > > > >> > > > > > How does an simple Analyzer look that just "n-grams" the > >> >docs/fields. > >> > > > > > > >> > > > > > class SimpleNGramAnalyzer extends Analyzer { @Override > >> > > > > > public TokenStream tokenStream ( String fieldName, > >> > > > > Reader > >> reader ) > >> > > > > > { > >> > > > > > EdgeNGramTokenFilter... ??? > >> > > > > > } > >> > > > > > } > >> > > > > > > >> > > > > > > -----Urspr=FCngliche Nachricht----- > >> > > > > > > Von: Otis Gospodnetic > >> > > > > > > [mailto:otis_gospodnetic@yahoo.com] > >> > > > > > > Gesendet: Dienstag, 3. Mai 2011 13:36 > > > > An: > >> > > java-user@lucene.apache.org > > > > Betreff: Re: AW: "fuzzy > >> > > prefix" search > > > > > >> > > > > > > Hi, > >> > > > > > > > >> > > > > > > I didn't read this thread closely, but just in case: > >> > > > > > > * Is this something you can handle with synonyms? > >> > > > > > > * If this is for English and you are trying to handle > >> > > > > > > typos, > >> > > > > > > there is a > >> > > >list > >> > > > > >of > >> > > > > > > common English misspellings out there that you could > >> > > > > use for > >> > > > > > > this > >> > > > > perhaps. > >> > > > > > > * Have you considered n-gramming your tokens? Not > >> > > > sure if > >> > > > > > > this would > >> > > > > help, > >> > > > > > > didn't read messages/examples closely enough, but you > >> > > > > > > may want to > >> > > > > look at > >> > > > > > > this if you haven't done so yet. > >> > > > > > > > >> > > > > > > Otis > >> > > > > > > ---- > >> > > > > > > Sematext :: http://sematext.com/ :: Solr - Lucene - > >> > > > > Nutch Lucene ecosystem > >> > > > > > > search :: http://search-lucene.com/ > >> > > > > > > > >> > > > > > > > >> > > > > > > > >> > > > > > > ----- Original Message ---- > >> > > > > > > > From: Clemens Wyss > >> > > > > > > > To: "java-user@lucene.apache.org" >> > > user@lucene.apache.org> > >> > > > > > > > Sent: Tue, May 3, 2011 5:25:30 AM > > > > Subject: > >> > > > AW: "fuzzy prefix" search > > > > > >> > > > > > > > >PrefixQuery > >> > > > > > > > I'd like the combination of prefix and fuzzy ;-) > >> > > > > > > > because > >> > > > > > > > people > >> > > >could > >> > > > > > > >also type "menlo" or "m=E4rl" and in any of these case= s > >> > > > > > > I'd > >> > > > > > > like to > >> > > >get > >> > > > > > > >a hit on Merlot (for suggesting Merlot) > >> > > > > > > > > >> > > > > > > > > -----Urspr=FCngliche Nachricht----- > >> > > > > > > > > Von: Ian Lea [mailto:ian.lea@gmail.com] > >> > > > > > > > > Gesendet: Dienstag, 3. Mai 2011 11:22 > An: > >> > > > > > > > java-user@lucene.apache.org > >> > > > > > > > > Betreff: Re: "fuzzy prefix" search > >> > > > > > > > > > >> > > > > > > > > I'd assumed that FuzzyQuery wouldn't ignore case > >> > > > > > but I > >> > > > > > > could be > >> > > > > wrong. > >> > > > > > > > > What would be the edit distance between "mer" > >> > > and > >> >"merlot"? > >> > > > > Would > >> > > > > > > > > it be less that 1.5 which I reckon would be the > >> > > > value of > >> > > > > > > > > length(term)*0.5 as detailed in the javadocs? > >> > > > > > > > > Seems > >> > > > > > > > > unlikely, > >> > > >but > >> > > > > > > > > I don't really know anything about the > >> > > > > > > > > Levenshtein (edit > >> > > distance) > >> > > > > > > algorithm as used by FuzzyQuery. > >> > > > > > > > > Wouldn't a PrefixQuery be more appropriate here? > >> > > > > > > > > > >> > > > > > > > > > >> > > > > > > > > -- > >> > > > > > > > > Ian. > >> > > > > > > > > > >> > > > > > > > > On Tue, May 3, 2011 at 10:10 AM, Clemens Wyss > >> > > > > > > > > > >> > > > > > > > > wrote: > >> > > > > > > > > > Unfortunately lowercasing doesn't help. > >> > > > > > > > > > Also, doesn't the FuzzyQuery ignore casing? > >> > > > > > > > > > > >> > > > > > > > > >> -----Urspr=FCngliche Nachricht----- > >> > > > > > > > > >> Von: Ian Lea [mailto:ian.lea@gmail.com] > >> > > > > > > > > >> Gesendet: Dienstag, 3. Mai 2011 11:06 > > > > >> > > > > > >> > >> > > > > > An: java-user@lucene.apache.org > >> > > > > > > > > >> Betreff: Re: "fuzzy prefix" search > >> > > > > > > > > >> > >> > > > > > > > > >> Mer !=3D mer. The latter will be what is > >> > > > > > > > > indexed > >> > > > > > > > > because > >> > > > > > > > > >> StandardAnalyzer calls LowerCaseFilter. > >> > > > > > > > > >> > >> > > > > > > > > >> -- > >> > > > > > > > > >> Ian. > >> > > > > > > > > >> > >> > > > > > > > > >> > >> > > > > > > > > >> On Tue, May 3, 2011 at 9:56 AM, Clemens Wyss > >> > > > > > > > > > >> > > > > > > > > >> wrote: > >> > > > > > > > > >> > Sorry for coming back to my issue. Can > >> > > > > anybody > >> > > > > > > > > >> explain why > >> > > >my > >> > > > > > > > > "simple" > >> > > > > > > > > >> unit test below fails? Any hint/help apprecia= ted. > >> > > > > > > > > >> > > >> > > > > > > > > >> > Directory directory =3D new RAMDirectory(); > >> > > > > > > > > >> IndexWriter > >> > > > > > > > > >> > indexWriter =3D new IndexWriter( directory, > >> > > > > new > >> > > > > > > > > >> > StandardAnalyzer( > >> > > > > > > > > Version.LUCENE_31 > >> > > > > > > > > >> > ), IndexWriter.MaxFieldLength.UNLIMITED ); > >> Document > >> > > > > document > >> > > > > > > =3D > >> > > > > > > > > new > >> > > > > > > > > >> > Document(); document.add( new Field( "test", > >> "Merlot", > >> > > > > > > > > >> > Field.Store.YES, Field.Index.ANALYZED ) ); > >> > > > > > > > > >> > indexWriter.addDocument( > >> > > > > > > > > >> > document ); IndexReader indexReader =3D > >> > > > > > > > > indexWriter.getReader(); > >> > > > > > > > > >> > IndexSearcher searcher =3D new IndexSearcher= ( > >> > > > > > > indexReader ); > >> > > > > > > > > >> > Query q =3D new FuzzyQuery( new Term( "test= ", > "Mer" > >> ), > >> > > 0.5f, > >> > > >0, > >> > > > > > > > > >> > 10 ); // or Query q =3D new FuzzyQuery( new > >> > > > > Term( > >> > > > > > > > > >> > "test", > >> > > "Mer" > >> > > > > > > > > >> > ), 0.5f); TopDocs result =3D searcher.search= ( > >> > > > > > q, > >> > > > > > 10 > >> > > > > > ); > >> > > > > > > > > >> > Assert.assertEquals( 1, result.totalHits ); > >> > > > > > > > > >> > > >> > > > > > > > > >> > - Clemens > >> > > > > > > > > >> > > >> > > > > > > > > >> >> -----Urspr=FCngliche Nachricht----- > >> > > > > > > > > >> >> Von: Clemens Wyss > >> > > > > [mailto:clemensdev@mysign.ch] > >> > > > > > > > > >> >> Gesendet: Montag, 2. Mai 2011 23:01 > >> > > > > > > > > >> >> An: java-user@lucene.apache.org > >> > > > > > > > > >> >> Betreff: AW: "fuzzy prefix" search > >> > > > > > > > > >> >> > >> > > > > > > > > >> >> Is it the combination of FuzzyQuery and > >> > > > > > Term which makes > >> > > >the > >> > > > > > > > > >> >> search to go for "word boundaries"? > >> > > > > > > > > >> >> > >> > > > > > > > > >> >> > -----Urspr=FCngliche Nachricht----- > >> > > > > > > > > >> >> > Von: Clemens Wyss > >> > > > > > > > > [mailto:clemensdev@mysign.ch] > >> > > > > > > > > >> >> > Gesendet: Montag, 2. Mai 2011 14:13 > >> > > > > > > > > >> >> > An: java-user@lucene.apache.org > >> > > > > > > > > >> >> > Betreff: AW: "fuzzy prefix" search > >> > > > > > > > > >> >> > > >> > > > > > > > > >> >> > I tried this too, but unfortunately I > >> > > > > > > > > only get > >> > > > > > > > > >> hits when > >> > > > > > > > > >> >> > the search term is a least as long as > >> > > the word to > >> >be > >> > > >looked > >> > > > > up. > >> > > > > > > > > >> >> > > >> > > > > > > > > >> >> > E.g.: > >> > > > > > > > > >> >> > ... > >> > > > > > > > > >> >> > Directory directory =3D new RAMDirectory()= ; > >> >IndexWriter > >> > > > > > > > > >> >> > indexWriter =3D new IndexWriter( > >> > > directory, >> >> > >> > > > > > > > > > IndexManager.getIndexingAnalyzer( > >> > > > > > > > > >> >> LOCALE_DE ), > >> > > > > > > > > >> >> > > >> > > IndexWriter.MaxFieldLength.UNLIMITED > >> >); > >> > > > > > > > > >> >> > > >> > > > > > > > > >> >> > Document document =3D new Document(); > >> > > document.add( > >> > > > > new > >> > > > > > > > > Field( > >> > > > > > > > > >> >> > "test", "Merlot", > >> > > > > > > > > >> >> > Field.Store.YES, > >> > > Field.Index.ANALYZED > >> >) ); > >> > > > > > > > > >> >> indexWriter.addDocument( > >> > > > > > > > > >> >> > document ); > >> > > > > > > > > >> >> > > >> > > > > > > > > >> >> > IndexReader indexReader =3D > >> indexWriter.getReader(); > >> > > > > > > > > >> >> > IndexSearcher > >> > > > > > > > > >> >> > searcher =3D new IndexSearcher( > >> > > > > > > > indexReader ); >> > >> > > > > > > > >> > > >> > > > > > > > > >> >> > Query q =3D new FuzzyQuery( new Term( > >> > > > > > > > > "test", > >> "Mer" > >> ), > >> > > >0.6f, > >> > > > > > > > > >> >> > 1 ); TopDocs result =3D searcher.search( q= , > >> > > > > > > > > >> >> > 10 ); > >> > > > > > > > > >> >> > Assert.assertEquals( >> >> > 1, > >> > > > > > > > > >> >> result.totalHits ); ... > >> > > > > > > > > >> >> > > >> > > > > > > > > >> >> > > -----Urspr=FCngliche Nachricht----- > >> > > > > > > > > >> >> > > Von: Uwe Schindler > >> > > > > > > > [mailto:uwe@thetaphi.de] > >> > > > > > > > >> > >> > > > > > > > > >> > > Gesendet: Montag, 2. Mai 2011 13:50 >> >> = > > > An: > >> > > > > > > > > java-user@lucene.apache.org > >> > > > > > > > > >> >> > > Betreff: RE: "fuzzy prefix" search > >> > > > > > > > > >> >> > > > >> > > > > > > > > >> >> > > Hi, > >> > > > > > > > > >> >> > > > >> > > > > > > > > >> >> > > You can pass an integer to FuzzyQuery > >> > > > > > which > >> >defines > >> > > the > >> > > > > > > > > >> >> > > number of characters that are seen as p= refix. > >> > > > > > > > > >> >> > So all > >> > > > > > > > > >> >> > > terms must match > >> > > > > > > > > >> >> > > this prefix and the rest of each term > >> > > > > is matched > >> >using > >> > > > > >fuzzy. > >> > > > > > > > > >> >> > > > >> > > > > > > > > >> >> > > Uwe > >> > > > > > > > > >> >> > > > >> > > > > > > > > >> >> > > ----- > >> > > > > > > > > >> >> > > Uwe Schindler > >> > > > > > > > > >> >> > > H.-H.-Meier-Allee 63, D-28213 Bremen > >> > > > > > > > > >> http://www.thetaphi.de > >> > > > > > > > > >> >> > > eMail: uwe@thetaphi.de > >> > > > > > > > > >> >> > > > >> > > > > > > > > >> >> > > > -----Original Message----- > >> > > > > > > > > >> >> > > > From: Clemens Wyss > >> > > > > > > > [mailto:clemensdev@mysign.ch] > >> > > > > > > > > >> >> > > > Sent: Monday, May 02, 2011 1:47 PM > >> > > > > >> > > > > >> >To: > >> > > > > > > > > >> java-user@lucene.apache.org > > > > > > >> > >> > > >> > > >> > > > > Subject: "fuzzy prefix" search >> >> > > > > >> > > > > > > > > >> >> > > > I'd like to search fuzzily but not > >> > > > > > on a full > >> >term. > >> > > > > > > > > >> >> > > > E.g. > >> > > > > > > > > >> >> > > > I have a text "Merlot del Ticino" > >> > > > > > > > > >> >> > > > I'd like > >> > > > > > > > > >> >> > > > "mer", "merr", "melo", ... to match. > >> > > > > > > > > >> >> > > > > >> > > > > > > > > >> >> > > > If I use FuzzyQuery only "merlot, "= merlott" > >> >hit. > >> > > >What > >> > > > > > > > > >> >> > > > Query-combination should I use? > >> > > > > > > > > >> >> > > > > >> > > > > > > > > >> >> > > > Thx > >> > > > > > > > > >> >> > > > Clemens > >> > > > > > > > > >> >> > > > > >> > > > > > > > > >> >> > > > > >> > > > > > > > > >> >> > > > > >> > > > > > > > > >> >> > > > > >> > > >-------------------------------------------------------- > >> > > > > > > > > >> >> > > > ---- > >> > > > > > > > > >> >> > > > --- > >> > > > > > > > > >> >> > > > --- > >> > > > > > > > > >> >> > > > -- > >> > > > > > > > > >> >> > > > - 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 > >> > > > > > > > > >> >> > > >> > > > > > > > > >> >> > > >> > > > > > > > > >> >> > > >> > > > > > > > > >> >> > >> > > >-------------------------------------------------------------- > >> > > > > > > > > >> >> -- > >> > > > > > > > > >> >> > --- > >> > > > > > > > > >> >> > -- 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 >> > > >> > > > > > > > > >> > > >> > > > > > > > > >> > > >> > > > > > > > > >> > > >> > > >--------------------------------------------------------------- > >> > > > > > > > > >> > ---- > >> > > > > > > > > >> > -- 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 > > >> > > > > > > > > > > >> > > > > > > > > > > >> > > > > > > > > > > >> > > > >> > > >---------------------------------------------------------------- > >> > > -- > >> > > > > > > > > > --- > >> > > > > > > > > > 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 > > > > >> > > > > > > > > >> > > > > > > > > >> > > > >> > > ----------------------------------------------------------------- > >> > > --- > >> > > - > > > > > 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 > > >> > > > > > > >> > > > > > > >> > > > > > > >> > > > > > ----------------------------------------------------------- > >> > > > > > --- > >> > > > > > ---- > >> > > > > > --- > >> > > > > > 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 > > >> > > > > >> > > > > >> > > > --------------------------------------------------------------- > >> > > > --- > >> > > > --- > >> > > > 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 > >> > > >> > > >> > ------------------------------------------------------------------- > >> > -- 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 > > > > > > --------------------------------------------------------------------- > > 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 --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.org For additional commands, e-mail: java-user-help@lucene.apache.org