Is there a meaningful way to SCAN Redis using cursors, in parallel?
I have this simple recursive routine to scan redis keys: async function scanRedisKeys(req, res, next) { const client = redis.createClient({ host: 'localhost', port: 6379 }); const run = (cursor) => { client.scan(cursor, 'MATCH', '*', 'COUNT', 100, (err, results) => {…