Re: Multiple Analyzers

2005-11-17 Thread Michael Curtin
> Hi everybody, I want to know how to create an analyzer whith this and > StopFilter and LowerCaseFilter. Exists some example anywhere? > thks for replies Not bad at all. StopAnalyzer by itself may do what you want. If not, here's an example of a custom analyzer: class MyAnalyzer extends Ana

Multiple Analyzers

2005-11-17 Thread Daniel Cortes
Hi everybody, I want to know how to create an analyzer whith this and StopFilter and LowerCaseFilter. Exists some example anywhere? thks for replies - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: Multiple Analyzers

2005-10-31 Thread Chris Hostetter
: understand your recommendations. Is there a way that I can just : incorporate Stem, Soundex, and Standard into one search. In other words, : don't toggle anything. Just index using custom analyzer that contains : Stem, Soundex, and Standard analyzers at once. And search using the custom : an

Re: Multiple Analyzers

2005-10-31 Thread Erik Hatcher
cc PM Subject Re: Multiple Analyzers Please respond to [EMAIL PROTECTED] apache.org On 30 Oct 2005, at 11:03, [EMAIL PROTECTED] wrote: I am implementing a search tha

Re: Multiple Analyzers

2005-10-31 Thread Daniel . Clark
ser@lucene.apache.org 10/30/2005 07:50 cc PM Subject R

Re: Multiple Analyzers

2005-10-30 Thread Erik Hatcher
On 30 Oct 2005, at 11:03, [EMAIL PROTECTED] wrote: I am implementing a search that allows the user to toggle the Soundex and Stem functionality on and off. When the Soundex or Sten functions are not on, the search will use the StandardAnalyzer as default. I implemented the Soundex (Sound

Multiple Analyzers

2005-10-30 Thread Daniel . Clark
I am implementing a search that allows the user to toggle the Soundex and Stem functionality on and off. When the Soundex or Sten functions are not on, the search will use the StandardAnalyzer as default. I implemented the Soundex (SoundexAnalyzer from book Lucene In Action) and Stem (SnowballAn