this.redis.scan(cursor, 'MATCH', pattern, 'COUNT', count, (err, result) => {
        if (err) return cb(err)
        const [newCursor, newKeys] = result
        cursor = newCursor
        keys.push(...newKeys)