Consider the items indexed with 3 fields : title, description and tags. Is there a way in which solr automatically queries against the tags field based on the search term to boost items matching the tags?
Item 1 (Title: AB, Description: This is an A & B item, tags: A,B)
Item 2 (TItle: ABC, Descrption: This is an A &B & C item, tags: A,B,C)
So now I want to search for "B C" such that it gives me item2 as the top result based on the tags, so the search should boost item2 after evaluating the tags field. Is there a way in which solr automatically queries against the tags field based on the search term to boost items matching the tags without doing the query time boosting manually on a field?