sql >> Databasteknik >  >> NoSQL >> Redis

Lyssna efter ändringar i redis-listan

Du kan använda notify-keyspace-events för det

exempel med Node.js men idén är liknande för andra språk.

const Redis = require('ioredis')
const redis = new Redis()

;(async function () {
    redis.on('ready', () => {
        console.log('ready');

        redis.config('set', 'notify-keyspace-events', 'KEl')
        // KEl => see https://redis.io/topics/notifications to understand the configuration
        // l is meant we are interested in list event

        redis.psubscribe(['__key*__:*'])

        redis.on('pmessage', function(pattern, channel, message) {
            console.log('got %s', message);
        });
    })
})()

Exempelutgång




  1. Regex för MongoDB ObjectID

  2. Använder AngularJs och MongoDB/Mongoose

  3. Skapa nycklar i bulk i Redis - ServiceStack C#

  4. Hur kan jag använda "Not Like"-operatorn i MongoDB