码迷,mamicode.com
首页 > 编程语言 > 详细

python:用Redis完成发布和订阅数据

时间:2018-10-07 22:04:06      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:sub()   lis   pre   class   __name__   ons   red   print   imp   

安装: 

pip install redis

  

 

发布文件:

# coding:utf-8

import redis
import json

class RedisHelper():
    def __init__(self):
        localhost = ‘192.168.2.x‘
        self.__conn = redis.Redis(host=‘localhost‘, port=6379, password=‘password‘) # , decode_responses=True, password=‘password‘
        self.channel = "monitor"

    def publisher(self, msg):
        self.__conn.publish(self.channel, json.dumps(msg))


    def subscriber(self):
        pub = self.__conn.pubsub()
        pub.subscribe(self.channel)
        pub.parse_response()
        return pub

if __name__ == "__main__":
    msg = {
        ‘name‘: ‘publisher‘,
        ‘msg‘: ‘message‘
    }
    red = RedisHelper()
    red.publisher(msg)
    print msg

  

 

订阅文件:

# coding:utf-8

from redis_practice import *

obi = RedisHelper()
redis_sub = obi.subscriber()
msg = redis_sub.parse_response()
print msg

  

 

python:用Redis完成发布和订阅数据

标签:sub()   lis   pre   class   __name__   ons   red   print   imp   

原文地址:https://www.cnblogs.com/timotong/p/9751636.html

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