84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
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.