I think in that case, making a field String type is your option, however remember that it'd be case sensitive. Another approach is to create a case insensitive field type and doing searches on those fields only.
<fieldType name="string_ci" class="solr.TextField" sortMissingLast="true" omitNorms="true" compressThreshold="10"> <analyzer> <tokenizer class="solr.KeywordTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory"/> </analyzer> </fieldType> Can you provide your fields and dismax config and if possible records you would like and records you do not want? -S On 25 April 2013 11:50, vsl <ociepa.pa...@gmail.com> wrote: > Thanks for your reply. I am using edismax as well. What I want to get is > the > exact match without other results that could be close to the given term. > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Exact-matching-in-Solr-3-6-1-tp4058865p4058876.html > Sent from the Solr - User mailing list archive at Nabble.com. >