redis按多字段排序

时间:2013-07-31 16:00:20

标签: sorting redis

使用sql查询多排序字段很容易。例如:

select * from user order by score desc,name desc

有两个字段排序(分数,名称)。

如何在redis中做到这一点?

1 个答案:

答案 0 :(得分:1)

使用按分数排序的有序redis集。你必须根据自己的需要准备分数。

finalScore = score*MAX_NAME_VALUE + getIntRepresentation(name) 
//MAX_NAME_VALUE is the maximum value returned by getIntRepresentation() method

然后使用

 zadd myset finalScore value

和刚刚使用

zrevrange myset 0 10