Hello, I want do query expansion on Solr, I have a taxonomy index like this.
<field name="category" type="string" indexed="true" stored="true" /> <field name="keyword" type="string" indexed="true" stored="true" /> <field name="syonym" type="string" indexed="true" multiValued="true" /> Is that possible to do one search to get a list contains searched keywords and their siblings under same category? For example, search for "Ford" whose category is "Car Dealer", the results is not limited to "Ford", but also "Honda", "BMW", "Benz" under same category "Car Dealer". Thanks Nicholas