In Solr, I need to do a query like this q=(CityID:20 OR CityID:100 OR CityID:5 OR CityID:12)
I need the query to return only 1 document which is the first occurence of CityID in specific order 20,100,5,12
Can I apply some kind of boosting for this?
Thanks.