 [det]redis_scan(+Redis, 
-LazyList, +Options)
[det]redis_sscan(+Redis, 
+Set, -LazyList, +Options)
[det]redis_hscan(+Redis, 
+Hash, -LazyList, +Options)
[det]redis_zscan(+Redis, 
+Set, -LazyList, +Options)Map the Redis
[det]redis_scan(+Redis, 
-LazyList, +Options)
[det]redis_sscan(+Redis, 
+Set, -LazyList, +Options)
[det]redis_hscan(+Redis, 
+Hash, -LazyList, +Options)
[det]redis_zscan(+Redis, 
+Set, -LazyList, +Options)Map the Redis SCAN, SSCAN, HSCAN 
and ZSCAN‘commands into a lazy list. For redis_scan/3 
and redis_sscan/4 the result 
is a list of strings. For redis_hscan/4 
and redis_zscan/4, the result 
is a list of pairs. Options processed:
- match(Pattern)
- Adds the MATCHsubcommand, only returning matches for
Pattern.
- count(Count)
- Adds the COUNTsubcommand, giving a hint to the size of the 
chunks fetched.
- type(Type)
- Adds the TYPEsubcommand, only returning answers of the 
indicated type.
- See also
- lazy_list/2.