Re: Accent insensitive analyzer

2013-03-24 Thread Erick Erickson
ISOLatin1AccentFilter has been deprecated for quite some time,
ASCIIFoldingFilter is preferred

Best
Erick


On Fri, Mar 22, 2013 at 2:59 PM, Jerome Blouin jblo...@expedia.com wrote:

 Thanks. I'll check that later.

 -Original Message-
 From: Sujit Pal [mailto:sujitatgt...@gmail.com] On Behalf Of SUJIT PAL
 Sent: Friday, March 22, 2013 2:52 PM
 To: java-user@lucene.apache.org
 Subject: Re: Accent insensitive analyzer

 Hi Jerome,

 How about this one?


 http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.ISOLatin1AccentFilterFactory

 Regards,
 Sujit

 On Mar 22, 2013, at 9:22 AM, Jerome Blouin wrote:

  Hello,
 
  I'm looking for an analyzer that allows performing accent insensitive
 search in latin languages. I'm currently using the StandardAnalyzer but it
 doesn't fulfill this need. Could you please point me to the one I need to
 use? I've checked the javadoc for the various analyzer packages but can't
 find one. Do I need to implement my own analyzer?
 
  Regards,
  Jerome
 


 -
 To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
 For additional commands, e-mail: java-user-h...@lucene.apache.org


 -
 To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
 For additional commands, e-mail: java-user-h...@lucene.apache.org




Accent insensitive analyzer

2013-03-22 Thread Jerome Blouin
Hello,

I'm looking for an analyzer that allows performing accent insensitive search in 
latin languages. I'm currently using the StandardAnalyzer but it doesn't 
fulfill this need. Could you please point me to the one I need to use? I've 
checked the javadoc for the various analyzer packages but can't find one. Do I 
need to implement my own analyzer?

Regards,
Jerome



Re: Accent insensitive analyzer

2013-03-22 Thread Jack Krupansky

Try the ASCII Folding FIlter:
https://lucene.apache.org/core/4_2_0/analyzers-common/org/apache/lucene/analysis/miscellaneous/ASCIIFoldingFilter.html

-- Jack Krupansky

-Original Message- 
From: Jerome Blouin

Sent: Friday, March 22, 2013 12:22 PM
To: java-user@lucene.apache.org
Subject: Accent insensitive analyzer

Hello,

I'm looking for an analyzer that allows performing accent insensitive search 
in latin languages. I'm currently using the StandardAnalyzer but it doesn't 
fulfill this need. Could you please point me to the one I need to use? I've 
checked the javadoc for the various analyzer packages but can't find one. Do 
I need to implement my own analyzer?


Regards,
Jerome


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org



RE: Accent insensitive analyzer

2013-03-22 Thread Jerome Blouin
I understand that I can't configure it on an analyzer so on which class can I 
apply it?

Thank,
Jerome

-Original Message-
From: Jack Krupansky [mailto:j...@basetechnology.com] 
Sent: Friday, March 22, 2013 12:38 PM
To: java-user@lucene.apache.org
Subject: Re: Accent insensitive analyzer

Try the ASCII Folding FIlter:
https://lucene.apache.org/core/4_2_0/analyzers-common/org/apache/lucene/analysis/miscellaneous/ASCIIFoldingFilter.html

-- Jack Krupansky

-Original Message-
From: Jerome Blouin
Sent: Friday, March 22, 2013 12:22 PM
To: java-user@lucene.apache.org
Subject: Accent insensitive analyzer

Hello,

I'm looking for an analyzer that allows performing accent insensitive search in 
latin languages. I'm currently using the StandardAnalyzer but it doesn't 
fulfill this need. Could you please point me to the one I need to use? I've 
checked the javadoc for the various analyzer packages but can't find one. Do I 
need to implement my own analyzer?

Regards,
Jerome


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org



Re: Accent insensitive analyzer

2013-03-22 Thread Jack Krupansky

Start with the Standard Tokenizer:
https://lucene.apache.org/core/4_2_0/analyzers-common/org/apache/lucene/analysis/standard/StandardTokenizer.html

-- Jack Krupansky

-Original Message- 
From: Jerome Blouin

Sent: Friday, March 22, 2013 12:53 PM
To: java-user@lucene.apache.org
Subject: RE: Accent insensitive analyzer

I understand that I can't configure it on an analyzer so on which class can 
I apply it?


Thank,
Jerome

-Original Message-
From: Jack Krupansky [mailto:j...@basetechnology.com]
Sent: Friday, March 22, 2013 12:38 PM
To: java-user@lucene.apache.org
Subject: Re: Accent insensitive analyzer

Try the ASCII Folding FIlter:
https://lucene.apache.org/core/4_2_0/analyzers-common/org/apache/lucene/analysis/miscellaneous/ASCIIFoldingFilter.html

-- Jack Krupansky

-Original Message-
From: Jerome Blouin
Sent: Friday, March 22, 2013 12:22 PM
To: java-user@lucene.apache.org
Subject: Accent insensitive analyzer

Hello,

I'm looking for an analyzer that allows performing accent insensitive search 
in latin languages. I'm currently using the StandardAnalyzer but it doesn't 
fulfill this need. Could you please point me to the one I need to use? I've 
checked the javadoc for the various analyzer packages but can't find one. Do 
I need to implement my own analyzer?


Regards,
Jerome


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org 



-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org



Re: Accent insensitive analyzer

2013-03-22 Thread SUJIT PAL
Hi Jerome,

How about this one?

http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.ISOLatin1AccentFilterFactory

Regards,
Sujit

On Mar 22, 2013, at 9:22 AM, Jerome Blouin wrote:

 Hello,
 
 I'm looking for an analyzer that allows performing accent insensitive search 
 in latin languages. I'm currently using the StandardAnalyzer but it doesn't 
 fulfill this need. Could you please point me to the one I need to use? I've 
 checked the javadoc for the various analyzer packages but can't find one. Do 
 I need to implement my own analyzer?
 
 Regards,
 Jerome
 


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org



RE: Accent insensitive analyzer

2013-03-22 Thread Jerome Blouin
Thanks. I'll check that later.

-Original Message-
From: Sujit Pal [mailto:sujitatgt...@gmail.com] On Behalf Of SUJIT PAL
Sent: Friday, March 22, 2013 2:52 PM
To: java-user@lucene.apache.org
Subject: Re: Accent insensitive analyzer

Hi Jerome,

How about this one?

http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.ISOLatin1AccentFilterFactory

Regards,
Sujit

On Mar 22, 2013, at 9:22 AM, Jerome Blouin wrote:

 Hello,
 
 I'm looking for an analyzer that allows performing accent insensitive search 
 in latin languages. I'm currently using the StandardAnalyzer but it doesn't 
 fulfill this need. Could you please point me to the one I need to use? I've 
 checked the javadoc for the various analyzer packages but can't find one. Do 
 I need to implement my own analyzer?
 
 Regards,
 Jerome
 


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org


-
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org