Redis
 sql >> Datenbank >  >> NoSQL >> Redis

Strings mit nodejs in redis scannen

Sie können den scan verwenden Befehl verfügbar in Redis ab Version 2.8.0. Überprüfen Sie die Dokumentation von http://redis.io/commands/scan.

Beispielcode:

var cursor = '0';

function scan(){
  redisClient.scan(cursor, 'MATCH', 'CM:*', 'COUNT', '5', function(err, reply){
    if(err){
        throw err;
    }
    cursor = reply[0];
    if(cursor === '0'){
        return console.log('Scan Complete');
    }else{
        // do your processing
        // reply[1] is an array of matched keys.
        // console.log(reply[1]);
        return scan();
    }
  });
}

scan(); //call scan function