Redis数据库中的ZSET是什么?

时间:2015-04-22 14:07:57

标签: redis

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代码。

1 个答案:

答案 0 :(得分:26)

简答:使用ZRANGE compleet-index:products:apple 0 -1 WITHSCORES

ZSET是 Redis Sorted Set 的简称,Redis数据类型documented here。有序集合中的每个键都有多个值,与浮动值得分相关联。