redis sort 能做类似 mysql 这样的排序吗?
SELECT id,weight,click FROM task ORDER BY weight DESC, click ASC
学习是最好的投资!
Use redis ordered set to sort when inserting
Don’t waste your efforts, no, just sit back and wait. http://redis.io/commands/SORT
Use memsql
It is not supported directly, but you can design it, such as dividing the score into weight + (max_click - click)
@finallygo’s method is generally feasible, but if it’s too complicated, it may not be supported well.
Use redis ordered set to sort when inserting
Don’t waste your efforts, no, just sit back and wait. http://redis.io/commands/SORT
Use memsql
It is not supported directly, but you can design it, such as dividing the score into weight + (max_click - click)
@finallygo’s method is generally feasible, but if it’s too complicated, it may not be supported well.