2个nodejs进程利用redis 实现订阅发布

1.新建文件 redis_db.js

javascript 复制代码
'use strict';

const redis = require('redis');
const options = {
    host: "127.0.0.1",
    port: 6379,
    password: "123456", // CONFIG SET requirepass "123456"
}

var array = []
for(var i=0; i<3; i++){
    const client = redis.createClient(options)
    array.push(client)
}

function getDB(index){
    if(typeof index === "number"){
        return array[index]
    }
    return array
}

for(var key in array){
    const client = array[key]
    client.on('error', err => console.log('------ client Redis connection failed ------' + err))
        .on('connect', () => console.log('------ client Redis connection succeed ------')
    )
}

module.exports = {
    getDB,
}

备注1:安装 reids 啥的就不说了

【保姆级】Redis安装教程(Windows版)_windows安装redis-CSDN博客

linux环境安装redis(亲测完成)_linux 斌阿姨安装redis-CSDN博客

备注2:新增3个redis的连接: 0 是之前的; 1 用于sub; 2 用于pub

如果没有多个的话,sub和pub的时候会报错

ReplyError: ERR only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context

2.新建文件 redis_ipc.js

javascript 复制代码
var redis_db = require("./redis_db.js");
const clients  = redis_db.getDB()
const client1  = clients[1]
const client2  = clients[2]

function mySub(channelName, handleMessage){
    // 订阅指定的频道
    client1.subscribe(channelName, (err, channels) => {
        if (err) {
            console.error('无法订阅频道:', err);
        } else {
            // 设置每次收到新消息时调用的处理函数
            client1.on('message', handleMessage);
        }
    })
}

function myPub(channelName, messageContent){
    client2.publish(channelName, messageContent, (err, reply) => {
        if (!err && reply === 0) {
            console.log(`消息 "${messageContent}" 未被任何人接收。`);
        } else if (!err && reply > 0) {
            console.log(`消息 "${messageContent}" 已成功发送给 ${reply} 个订阅者。`);
        } else {
            console.error('发送消息失败:', err);
        }
    });
}

module.exports = {
    mySub,
    myPub,
}

3.新增测试代码

3.1新建文件test01.js 测试同个进程的

javascript 复制代码
const redis_ipc = require('./redis_ipc.js')
function testSubPub(){
    const channelName = 'test_channel_1';
    function handleMessage(channel, message) {
        // 在这里编写处理收到消息后的操作
        console.log(`收到来自 ${channel} 通道的消息:${message}`);
    }
    redis_ipc.mySub(channelName, handleMessage)

    const messageContent = '{"data":{"name":"xxx","age":"18"}}';
    redis_ipc.myPub(channelName, messageContent)
}

testSubPub()

目录如下:

执行指令:node .\test01.js

3.2新建文件test02.js test03.js 测试同个进程的

javascript 复制代码
// test02.js
const redis_ipc = require('./redis_ipc.js')
function testSubPub(){
    const channelName = 'test_channel_1';
    function handleMessage(channel, message) {
        // 在这里编写处理收到消息后的操作
        console.log(`收到来自 ${channel} 通道的消息:${message}`);
    }
    redis_ipc.mySub(channelName, handleMessage)

    // const messageContent = '{"data":{"name":"xxx","age":"18"}}';
    // redis_ipc.myPub(channelName, messageContent)
}

testSubPub()
javascript 复制代码
test03.js
const redis_ipc = require('./redis_ipc.js')
function testSubPub(){
    const channelName = 'test_channel_1';
    // function handleMessage(channel, message) {
    //     // 在这里编写处理收到消息后的操作
    //     console.log(`收到来自 ${channel} 通道的消息:${message}`);
    // }
    // redis_ipc.mySub(channelName, handleMessage)

    const messageContent = '{"data":{"name":"xxx","age":"18"}}';
    redis_ipc.myPub(channelName, messageContent)
}

testSubPub()

订阅者:先在一个终端执行 node .\test02.js

发布者:再在一个终端执行 node .\test03.js

观察第一个终端 会收到 发布者的消息

4.大功告成

相关推荐
橘子星2 分钟前
深入理解 AJAX 中的 JSON 序列化与 JS 异步处理
前端·javascript·后端
旧曲重听17 分钟前
2026前端技术从「夯」到「拉」
前端·程序人生·职场和发展·软件工程
Kapaseker7 分钟前
我找到了最适合程序员的 PPT 工具 — Slidev
前端
夏幻灵12 分钟前
深度解析 JavaScript 异步编程:从回调地狱到 Promise 的重构
开发语言·javascript·重构
雾削木24 分钟前
B语言经典教程现代化重构
java·前端·stm32·单片机·嵌入式硬件
Cobyte26 分钟前
20.Vue Vapor 的应用初始化
前端·javascript·vue.js
乘风gg30 分钟前
手把手带你实践历时一年总结的 AI Code Review 最佳工作流!
前端·ai编程·cursor
禅思院30 分钟前
POST请求发两次?一次讲透CORS预检机制,面试不再翻车
前端·架构·前端框架
IT_陈寒32 分钟前
SpringBoot自动配置这么智能,为啥我写的Bean注入不了?
前端·人工智能·后端
LT101579744435 分钟前
2026年Web自动化测试工具选型指南:多浏览器兼容解决方案
前端·测试工具·自动化