in my solr call i want to boost all queries that have the word "mobile" in the longtext.
My call looks like this:
&q=*my_query*&defType=edismax&qf=xtitleLow_stringS^20++xartnumLow_stringS&ps=2&bq=xtitleLow_stringS:(*mobile*)^40
when i use the Boost query like this:
&bq=xtitleLow_stringS:"mobile"^40
it will work for fulltext but i just want to boost a query that contains it. I thought i can use the "*" contain to especially search for it. But it doesen't work, is there a mistake in my syntax?
thank you!