Hi and thanks for your reply,

My searchComponent is as such:

<searchComponent name="spellcheck" class="solr.SpellCheckComponent">

    <str name="queryAnalyzerFieldType">textSpell</str>

...
</searchComponent>


And then in my schema.xml, I have:

<fieldType name="textSpell" class="solr.TextField"
positionIncrementGap="100" >
        <analyzer type="query">
                <tokenizer class="solr.WhitespaceTokenizerFactory"/>
                <filter class="solr.SynonymFilterFactory" 
synonyms="synonyms.txt"
ignoreCase="true" expand="true"/>
                <filter class="solr.StopFilterFactory" ignoreCase="true"
words="stopwords.txt"/>
                <filter class="solr.StandardFilterFactory"/>
                <filter class="solr.LowerCaseFilterFactory"/>
                <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
        </analyzer> 

...
</fieldType>


Which is the analyzer I pasted in my original post. So this only confirms
that the query term is going through these filters and tokenizer, but none
of them splits on period marks.

Do you see any possible problems with my setup?

Thanks!
Sebastian
-- 
View this message in context: 
http://lucene.472066.n3.nabble.com/Solr-Spellcheker-automatically-tokenizes-on-period-marks-tp2131844p2131959.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to