Incrementally iterate hash fields and values
method
RedisClient.hscan
The hash key
The cursor value (0 to start iteration)
Promise that resolves with [next_cursor, [field1, value1, field2, value2, ...]]
Incrementally iterate hash fields and values with pattern matching
The hash key
The cursor value (0 to start iteration)
Literal "MATCH"
Pattern to match field names against
Promise that resolves with [next_cursor, [field1, value1, field2, value2, ...]]
Incrementally iterate hash fields and values with count limit
The hash key
The cursor value (0 to start iteration)
Literal "COUNT"
Maximum number of fields to return per call
Promise that resolves with [next_cursor, [field1, value1, field2, value2, ...]]
Incrementally iterate hash fields and values with pattern and count
The hash key
The cursor value (0 to start iteration)
Literal "MATCH"
Pattern to match field names against
Literal "COUNT"
Maximum number of fields to return per call
Promise that resolves with [next_cursor, [field1, value1, field2, value2, ...]]