博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
发布和订阅
阅读量:4944 次
发布时间:2019-06-11

本文共 1111 字,大约阅读时间需要 3 分钟。

 

发布者:

#!/usr/bin/env python# -*- coding:utf-8 -*-import redisclass RedisHelper:    def __init__(self):        self.__conn = redis.Redis(host='10.211.55.4')        self.chan_sub = 'fm104.5'        self.chan_pub = 'fm104.5'    def public(self, msg):        self.__conn.publish(self.chan_pub, msg)        return True    def subscribe(self):        pub = self.__conn.pubsub()        pub.subscribe(self.chan_sub)        pub.parse_response()        return pubobj = RedisHelper()obj.public('hello world')

 

订阅者:

#!/usr/bin/env python# -*- coding:utf-8 -*-import redisclass RedisHelper:    def __init__(self):        self.__conn = redis.Redis(host='10.211.55.4')        self.chan_sub = 'fm104.5'        self.chan_pub = 'fm104.5'    def public(self, msg):        self.__conn.publish(self.chan_pub, msg)        return True    def subscribe(self):        pub = self.__conn.pubsub()        pub.subscribe(self.chan_sub)        pub.parse_response()        return pubobj = RedisHelper()redis_sub = obj.subscribe()while True:    msg = redis_sub.parse_response()    print(msg)

 

转载于:https://www.cnblogs.com/sea-stream/p/10295566.html

你可能感兴趣的文章
Object.MemberwiseClone(浅Clone、深Clone)
查看>>
python之文件路径截取 & endswith()
查看>>
浏览器内的事件队列
查看>>
idea激活
查看>>
使用ML.NET实现白葡萄酒品质预测
查看>>
Linux Shell统计每秒钟内文件增加行数
查看>>
使用Button组件
查看>>
c语言字符串处理函数
查看>>
牛客网-对称与反对称 【逆元】
查看>>
[haoi2009]求回文串
查看>>
双亲数 容斥
查看>>
RabbitMQ管理界面
查看>>
AutoMapper: Mapper.Initialize() 只能调用一次,Why?
查看>>
基础回顾之可变参数
查看>>
闲说测试
查看>>
[译]开闭原则
查看>>
四种简单的排序算法
查看>>
天外有天
查看>>
吴恩达《深度学习》第二门课(3)超参数调试、Batch正则化和程序框架
查看>>
[国嵌笔记][010][TFTP与NFS服务器配置]
查看>>