SOLR refuses to bring exact matches, How? -
i have following field type (notice no filters, no tokenizers)
<fieldtype name="text_names" class="solr.strfield" /> i create field in schema using type:
<field name="exact_type" type="text_names" indexed="true" stored="true" /> now, search q=*:*&fq=exact_type:aa&fl=exact_type still results have other 'aa' in exact_type field.
missing here?
also behaves same:
q=exact_type:aa&fl=exact_type
i don't think "q=*:*" works dismaxhandler , believe using ,the correct syntax both queries should be:
q=&fq=exact_type:aa&fl=exact_type fq=exact_type:aa&fl=exact_type
Comments
Post a Comment