Should return the messages in a square (minLat, maxLat, etc), sorted based on the following parameters:
- kudosUpWeight - X1
- kudosDownWeight - X2
- replyCountWeight - X3
- timeFactor - X4
- powerTimeFactor - X5
With the formula:
(kU * X1 + kD * X2 + rC * X3) * X4 ^ (X5 / (currentTime - lastReplyTime))
This way we can tweak our formula to figure out exactly what weights work best for the user, and we can also get messages based on distance as opposed to rooms.
Should return the messages in a square (minLat, maxLat, etc), sorted based on the following parameters:
With the formula:
(kU * X1 + kD * X2 + rC * X3) * X4 ^ (X5 / (currentTime - lastReplyTime))
This way we can tweak our formula to figure out exactly what weights work best for the user, and we can also get messages based on distance as opposed to rooms.