Hi

My solr deployment is giving correct results for normal search terms like
"john".
But when i search with "john55" or "55" it will return all the search terms,
including those which neither contains john nor 55. 
Below is the fieldtype defined for this field.

<fieldType name="mytype" class="solr.TextField">
    <analyzer type="index">
        <tokenizer class="solr.LowerCaseTokenizerFactory"/>
    </analyzer>
    <analyzer type="query">
        <tokenizer class="solr.LowerCaseTokenizerFactory"/>
    </analyzer>
</fieldType>

Is there any other tokenizers or filters need to be set for
alphanumeric/Number search?


-- 
View this message in context: 
http://old.nabble.com/Issues-with-alphanumeric-search-terms-tp26629048p26629048.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to