redis中對list排序使用sort進行。
最簡單的SORT使用方法是SORT key和SORT key DESC:
SORT key 傳回鍵值從小到大排序的結果。 SORT key DESC 傳回鍵值由大到小排序的結果。
範例:
假設today_cost清單儲存了今日的開銷金額, 那麼可以用 SORT 指令對它進行排序:
# 开销金额列表 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"
更多Redis相關知識,請造訪Redis使用教學專欄!
以上是redis中怎麼對list進行排序的詳細內容。更多資訊請關注PHP中文網其他相關文章!