I have the following field type: <fieldtype name="email_type" class="solr.TextField"> <analyzer> <tokenizer class="solr.StandardTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="0" catenateNumbers="0" catenateAll="0" splitOnCaseChange="0"/> </analyzer> </fieldtype>
the following field: <field name="email" type="email_type" indexed="true" stored="true"/> I add the value "abc....@gmail.com" to this email field. When I search : 1. "abc.def@gmail*" - I get the result. 2. abc.def@gmail* (without doeble quotes) - I dont get the result. Am I missing something regarding wildcards and exact phrase searches? thanks. -- View this message in context: http://lucene.472066.n3.nabble.com/abc-def-gmail-not-retrieved-but-without-double-quotes-retrieved-tp4046268.html Sent from the Solr - User mailing list archive at Nabble.com.