Hi,

Did u mean changing field type as 
<fieldType name="text_auto" class="solr.TextField" 
positionIncrementGap="100" indexed="true" stored="false"
             multiValued="true">
            <analyzer type="index">
                <tokenizer class="solr.StandardTokenizerFactory"/>
                                 <filter class="solr.LowerCaseFilterFactory"/>
                                 <filter class="solr.ShingleFilterFactory"
                        minShingleSize="2"
                        maxShingleSize="4"
                        outputUnigrams="true"
                        outputUnigramsIfNoShingles="true"/>
                                   
                                                
            </analyzer>
            <analyzer type="query">
                <tokenizer class="solr.KeywordTokenizerFactory"/>
                                 <filter class="solr.LowerCaseFilterFactory"/>
                            <filter class="solr.TrimFilterFactory" />
                
                                 </analyzer>
    </fieldType>

This did not work out for me. 



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Autocomplete-with-Case-insensitive-feature-tp4131182p4131198.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to