欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【Redis】订阅发布

程序员文章站 2022-05-21 14:19:00
...

Redis 订阅发布

Redis 发布订阅(pub/sub)是一种消息通信模式:发送者(pub)发送消息,订阅者(sub)接收消息。 Redis 客户端可以订阅任意数量的频道

下图展示了频道 channel1 , 以及订阅这个频道的三个客户端 —— client2 、 client5 和 client1之间的关系:
【Redis】订阅发布
当有新消息通过 PUBLISH 命令发送给频道 channel1 时, 这个消息就会被发送给订阅它的三个客户端:

【Redis】订阅发布

发布

【Redis】订阅发布

/*
https://www.npmjs.com/package/redis
*/
var redis = require("redis"),
    client = redis.createClient(6379,'127.0.0.1');

    //发送消息  广播
    client.publish('sendServer01', 'this is news info');
    
    client.publish('sendServer02', 'this is product info');

订阅

/*
https://www.npmjs.com/package/redis
*/
var redis = require("redis"),
    client = redis.createClient(6379,'127.0.0.1');

    //监听广播
    client.subscribe('sendServer01');

    client.subscribe('sendServer02');

    client.on('message',(channel,msg)=>{
        console.log(channel,msg)
    })