I would like to do something like solr relevancy and sort by the scoring. But the SOLR relevancy have some defined score (tf-idf).
For example: I have boost method by field "NAME" and records returned(with score from solr and my expected score).
AA boost score 3
BB boost score 2
AB boost score 1
ID, Name, Score, Expected_Score
1, AA, 8, 3
2, AA, 6, 3
3, AA, 6, 3
4, AABB, 7, 6
5, BB, 9, 2
You can see the solr relevancy will given different score for NAME "AA" as it base on default score from query instead of only field Name. Also the most important is "BB" are given higher score compare to "AA" but the booster score is less.
I would like the scoring just base on customized field and data to boost only, without affected by others field. Similar with MySQL Weightage (ordering results based on combine weightage of fields) but in SOLR