redis数据库中的zset是什么。 我有一个带有一些数据的redis数据库。为了获得值
KEYS *apple*
1) "compleet-index:products:apple"
2) "compleet-index:brands:apple"
获取密钥后
GET compleet-index:productos:apple
我收到了回复
(error) WRONGTYPE Operation against a key holding the wrong kind of value
我得到的类型
TYPE compleet-index:productos:iphone
zset
当我做
DUMP compleet-index:productos:iphone
我获得了一个exas代码。
答案 0 :(得分:26)
简答:使用ZRANGE compleet-index:products:apple 0 -1 WITHSCORES
ZSET是 Redis Sorted Set 的简称,Redis数据类型documented here。有序集合中的每个键都有多个值,与浮动值得分相关联。