hscan name key_start key_end limit

列出 hashmap 中处于区间 (key_start, key_end] 的 key-value 列表.

("", ""] 表示整个区间.

参数

返回值

Key-Value list.

The key-value list is return as: k1 v1 k2 v2 ...

示例

ssdb 127.0.0.1:8888> hgetall h
key             value
-------------------------
  a               : a
  b               : b
  c               : c
  d               : d
  e               : e
  f               : f
6 result(s) (0.000 sec)
ssdb 127.0.0.1:8888> hscan h a c 10
key             value
-------------------------
  b               : b
  c               : c
2 result(s) (0.000 sec)
ssdb 127.0.0.1:8888>