boston-library / solr-core-conf

configuration docs from the test server Solr development-core
0 stars 0 forks source link

split full-text fields into separate qf #6

Closed ebenenglish closed 1 year ago

ebenenglish commented 2 years ago

To support separate search behavior for full-text fields, in solrconfig.xml, we need to:

  1. Remove ocr_tiv^0.5 and ocr_tsiv^0.5 from the default qf field list

  2. 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.

ebenenglish commented 2 years ago

Related: https://github.com/boston-library/commonwealth-vlr-engine/issues/19

ebenenglish commented 1 year ago

Fixed via #7