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

Come posso estrarre oggetti da Redis quando vengono aggiunti in tempo reale?

Ti consigliamo di utilizzare un pop di blocco:http://redis.io/commands/brpop

function waitForPush () {
  client.brpop(['list','otherlist',0], function (listName, item) {
    // do stuff
    waitForPush();
  });
}