Redis HSCAN 命令用于迭代哈希表中的鍵值對。
redis HSCAN 命令基本語法如下:
HSCAN key cursor [MATCH pattern] [COUNT count]
cursor - 游標(biāo)。
pattern - 匹配的模式。
count - 指定從數(shù)據(jù)集里返回多少元素,默認值為 10 。
>= 2.8.0
返回的每個元素都是一個元組,每一個元組元素由一個字段(field) 和值(value)組成。
> HMSET sites google "google.com" nhooo "(cainiaoplus.com)" weibo "weibo.com" 4 "taobao.com" OK > HSCAN sites 0 match "run*" 1) "0" 2) 1) "nhooo" 2) "(cainiaoplus.com)"