Can we specify order of columns to be searched in solr?
For example my search string is : "Test" Then my result should contain all rows matching column1 and then all rows matching column 2... Similar to union query in SQL.
I tried with custom search handler which will fire multiple requests to solr and then append to get final result. But is there any other way to get this type of search using SOLR?
I am using solr-5.4.1.
Thanks