码迷,mamicode.com
首页 > 其他好文 > 详细

Redis 实现广播订阅

时间:2018-03-08 12:16:23      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:highlight   rds   response   self   class   public   订阅   res   publish   

RedisHelper

import redis


class RedisHelper:
    def __init__(self):
        self.__conn = redis.Redis(host=‘47.94.18.xxx‘)
        self.chan_sub = ‘104.5‘  # 接收频道
        self.chan_pub = ‘104.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 pub

订阅者:

from redis_test.rds_helper import RedisHelper

obj = RedisHelper()
redis_sub = obj.subscribe()

while True:
    msg = redis_sub.parse_response()
    print(msg)

发布者:

from redis_test.rds_helper import RedisHelper

obj = RedisHelper()
obj.public(‘hello‘)

 

Redis 实现广播订阅

标签:highlight   rds   response   self   class   public   订阅   res   publish   

原文地址:https://www.cnblogs.com/412013cl/p/8527110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!