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

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -