Re: Analyzer question

2006-05-23 Thread AsifTheManRahman
Thanks Jeff. :) -- View this message in context: http://www.nabble.com/Analyzer+question-t1650271.html#a4524125 Sent from the Lucene - Java Users forum at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Re: Analyzer question

2006-05-19 Thread Jeff Rodenburg
The Keyword analyzer does no stemming or input modification of any sort: think of it as WYSIWYG for index population. The Whitespace analyzer simply removes spaces from your input (still no stemming), but the tokens are the individual words. I don't have the code in front of me, so I'm not sure

Re: Analyzer question

2005-08-08 Thread Erik Hatcher
On Aug 8, 2005, at 10:43 AM, Dan Armbrust wrote: It is my understanding that the StandardAnalyzer will remove underscores - so "some_word" be indexed as 'some' and 'word'. I want to keep the underscores, so I was thinking of changing over to an Analyzer that uses the WhiteSpaceTokenizer, Low