Scan a set
Retrieve the first batch of keys in a set
redis.sscan("set", 0)
Parameters:
the cursor of the iteration
:match => String
:count => Integer
Returns:
the next cursor and all found members
2446 2447 2448
# File 'lib/redis.rb', line 2446 def sscan(key, cursor, options={}) _scan(:sscan, cursor, [key], options) end