redis中怎么对list进行排序
时间:2022-02-25 11:50
redis中对list排序使用sort进行。 最简单的SORT使用方法是SORT key和SORT key DESC: SORT key 返回键值从小到大排序的结果。SORT key DESC 返回键值从大到小排序的结果。 例: 假设today_cost列表保存了今日的开销金额, 那么可以用 SORT 命令对它进行排序: 更多Redis相关知识,请访问Redis使用教程栏目! 以上就是redis中怎么对list进行排序的详细内容,更多请关注gxlsystem.com其它相关文章!# 开销金额列表
redis> LPUSH today_cost 30 1.5 10 8
(integer) 4
# 排序
redis> SORT today_cost
1) "1.5"
2) "8"
3) "10"
4) "30"
# 逆序排序
redis 127.0.0.1:6379> SORT today_cost DESC
1) "30"
2) "10"
3) "8"
4) "1.5"