Hi buddy, I am working on a music search project and I have a special requirement about the ranking when querying the artist name.
Ex: When I query the artist "ne yo", there are 500results and maybe 100 song names are repeated. So the ideal thing is to let users get more different songs in on page and the results have lyrics must be shown in the front. My current solr query is: ?q=ne+yo&qf=artist&defType=dismax&sort=lyric%20desc,links%20desc&start=0&rows=20&indent=on then the results will shows same song names together because those records always get the same score. How to implement that effect? Thxs.