To support separate search behavior for full-text fields, in solrconfig.xml, we need to:
Remove ocr_tiv^0.5 and ocr_tsiv^0.5 from the default qf field list
Create a new fulltext_qf field list that includes all of fields from the default, but also includes ocr_tiv and ocr_tsiv (no boosts)
Explore using wildcards to define *_tsi, *_tsim, *_ti, and *_tim search fields in the default qf and fulltext_qf field lists, the list of fields is getting hard to maintain. However, we need to maintain the boosts for specific fields.
To support separate search behavior for full-text fields, in
solrconfig.xml
, we need to:Remove
ocr_tiv^0.5
andocr_tsiv^0.5
from the defaultqf
field listCreate a new
fulltext_qf
field list that includes all of fields from the default, but also includesocr_tiv
andocr_tsiv
(no boosts)Explore using wildcards to define
*_tsi
,*_tsim
,*_ti
, and*_tim
search fields in the defaultqf
andfulltext_qf
field lists, the list of fields is getting hard to maintain. However, we need to maintain the boosts for specific fields.