This is not same as the below:
How to sort the top 100 results of solr query based on a specific filed?
Suppose my search criteria title:Building the Nation
returns 100k results. I guess Solr already returns data based on the best match i.e best match data will in the top. I am sorting based on some thing. In this case the record at the last position may come at the top.
https://host/solr/booksCore/select?q=(title:"Building the Nation" OR title:Building the Nation OR author:"Building the Nation" OR author:Building the Nation) AND subjects:*&rows=100&sort=sales_a desc&wt=json
So I want to do search at first, then take the 1st 100 records and then sort. How can I do that using Solr select API?