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

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

#!/usr/bin/env python# Author:Zhangmingdaimport redis,timepool = redis.ConnectionPool(host='192.168.11.5',port=6379,db=2)r = redis.Redis(connection_pool=pool)pipe = r.pipeline(transaction=True)pipe.set('age','22')time.sleep(15)pipe.execute()  #如果不执行,则不会执行pipe.set 即不会真正存值
pipeset
#!/usr/bin/env python# Author:Zhangmingda#!/usr/bin/env python# Author:Zhangmingdaimport redisclass RedisHelper:    def __init__(self):        self.__conn = redis.Redis(host='192.168.11.5',port=6379)        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)
redis_publish发布订阅
#!/usr/bin/env python# Author:Zhangmingdaimport redisclass RedisHelper:    def __init__(self):        self.__conn = redis.Redis(host='192.168.11.5',port=6379)        self.chan_sub = 'fm104.5'        self.chan_pub = 'fm104.5'    def public(self, msg): #发布消息用函数        self.__conn.publish(self.chan_pub, msg)        return Trueserver = RedisHelper()server.public('hehe')
redis发布消息

 http://www.cnblogs.com/lianzhilei/p/5983673.html

转载于:https://www.cnblogs.com/zhangmingda/p/9498537.html

你可能感兴趣的文章
红与黑
查看>>
linux命令速查
查看>>
Spring+Tomcat的JNDI数据源连接池简单配置
查看>>
Gradle 1.12用户指南翻译——第四十九章. Build Dashboard 插件
查看>>
struts中采用注解配置Action
查看>>
SecureCRT 安装上传(rz)和下载(sz)
查看>>
Rsync配置参数详解-什么是Rsync
查看>>
Android2.2 API 中文文档系列(1) —— TextView
查看>>
如何对磁盘做完整的全盘镜像备份?
查看>>
我的TiddlyWiki
查看>>
python学习:读写文件和字典排序
查看>>
Git学习笔记
查看>>
网络安全系列之三十七 Pangolin(穿山甲)和Havij(胡萝卜)的使用
查看>>
linux shell 将当前文件地址作为默认路径写入环境变量
查看>>
Apache CXF学习-创建基于spring的web service
查看>>
View Horizon Mirage安装手册(四)——Mirage Management Console安装
查看>>
Hibernate 检索-Criteria
查看>>
Radius服务器A10负载均衡解决方案的相关配置
查看>>
开源大数据周刊-第80期
查看>>
css布局之左侧固定右侧自适应布局
查看>>