i have a field defined in my schema.xml file
<fieldtype name="stemField" class="solr.TextField">
<analyzer>
<tokenizer class="solr.WhitespaceTokenizerFactory"/>
<filter class="solr.SnowballPorterFilterFactory"
language="English" />
</analyzer>
</fieldtype>
If i analyse this field type in analysis.jsp, the follwoing are the results
if i give "running" its stems word to run which is fine
If i give "machine" why is that it stems to "machin", now from where does
this word come from
If i give "revolutionary" it stems to "revolutionari", i thought it should
stem to revolution.
How does stemming work?
Does it reduces adverb to verb etc..., or we have to customize it.
Please let me know
Thanks
--
View this message in context:
http://www.nabble.com/SnowballPorterFilterFactory-stemming-word-question-tp25180310p25180310.html
Sent from the Solr - User mailing list archive at Nabble.com.