As you seems to be French (So do I), I suppose that your classes AccentFilter, SpecialFilter and PlurielFilter are dedicated to French documents analysis. I would be interested in these classes (could you send them to me ?) . I was on the way to create an accent filter and propose it to the lucene sandbox.
-----Message d'origine----- De : Stephane NOBILET [mailto:[EMAIL PROTECTED] Envoy� : mardi 9 mars 2004 17:55 � : Lucene Users List Objet : Re: Wildcards problem index classique : writer = new IndexWriter( indexPath , new MagicAnalyzer(), false ); writer.mergeFactor = 20; writer.addDocument(PublicationDocument.getDocument(publi.getId(), filter) ); writer.close() search : QueryParser queryParser = new QueryParser( "content", new MagicAnalyzer() ); queryParser.setOperator( QueryParser.DEFAULT_OPERATOR_AND ); query = queryParser.parse( text ); dans MagicAnalyser : tokenStream () : result = new AccentFilter(result); result = new StandardFilter(result); result = new LowerCaseFilter(result); result = new StopFilter(result, stopTable); result = new SpecialFilter(result); result = new PlurielFilter(result); ----- Original Message ----- From: "Otis Gospodnetic" <[EMAIL PROTECTED]> To: "Lucene Users List" <[EMAIL PROTECTED]> Sent: Tuesday, March 09, 2004 5:45 PM Subject: Re: Wildcards problem > That doesn't sound right :( > Can you send a self-sufficient code that adds an example document to > the index and then runs the comp* query that shows this problem? > > Thanks, > Otis > > > --- Stephane NOBILET <[EMAIL PROTECTED]> wrote: > > Hello ! > > > > version : lucene 1.3 final > > > > I search : comptable, I find the document. > > I search : compt*, I find so > > but : comp*, I don' find my document. > > > > Have you meet this problem ? > > > > Thanks > > > > excuse me for my english... > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
