[Answered ]-Solr working with Django finds only exact matches

2👍

Actually I fixed the issue by manipulating the last section of my schema.xml like

- <field name="text" type="text_en" indexed="true" stored="true" multiValued="false" />

+ <field name="text" type="ngram" indexed="true" stored="true" multiValued="false" />

changing the searched field type with ngram do the trick

👤tuna

0👍

You need to append a wild-card * at the end, so query like

q=title:foo*
👤arun

Leave a comment