sql >> Database teknologi >  >> NoSQL >> Redis

Scan strenge ved hjælp af nodejs i redis

Du kan bruge scan kommando tilgængelig i redis fra version 2.8.0. Se dokumentationen fra http://redis.io/commands/scan.

Eksempelkode:

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



  1. Redis hash meget langsom skrivehastighed

  2. Områdeforespørgsel til MongoDB-paginering

  3. Mongodb aggregeringspipeline, hvordan man begrænser et gruppe-push

  4. MongoDB 4.2 Management &Monitoring uden leverandørlåsning