Hey guys, I'm wondering if you have a recommendati...
# community-help
a
Hey guys, I'm wondering if you have a recommendation on how to deal with my sorting problem. My query is
luxthos paladin
, and I have a default sorting parameter
viewCount
. When I perform the search, my results look something like
Copy code
1. text_match: 196451, viewCount: 11, name: "Luxthos Paladin"
2. text_match: 196450, viewCount: 169474, name: "Luxthos - Paladin Core"
3. text_match: 196450, viewCount: 85356, name: "Luxthos - Paladin Dynamic"
3. text_match: 196450, viewCount: 42, name: "Luxthos - Paladin Rotation"
Results #2 and #3 are only 1 point lower in
text_match
, but have 10000x the
viewCount
. I'd like to prioritize these somehow. The way I'm imagining it is some kind of weighting on the sort parameters, but I can't find any way to do this. Advice?