I want to sort the results and scores returning from SOLR search,how I can get scores based on date like below:
Suppose for keywords \"football\" 12-10-201
You can pass the sort parameter in the URL
e.g. sort=published_date desc for documents by published date in descending order.
sort=published_date desc
If you want to sort by score and date you can use sort=score desc, published_date desc
sort=score desc, published_date desc