加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
python_redis.py 1.37 KB
一键复制 编辑 原始数据 按行查看 历史
xianhu 提交于 2019-07-20 22:07 . add python_redis.py
# _*_ coding: utf-8 _*_
"""
Python操作Redis实现消息的发布与订阅
"""
import sys
import time
import redis
# 全局变量
conn_pool = redis.ConnectionPool(host="localhost", port=6379, db=1)
conn_inst = redis.Redis(connection_pool=conn_pool)
channel_name = "fm-101.1"
def public_test():
while True:
# 发布消息
conn_inst.publish(channel_name, "hello " + str(time.time()))
if int(time.time()) % 10 == 1:
conn_inst.publish(channel_name, "over")
time.sleep(1)
def subscribe_test(_type=0):
pub = conn_inst.pubsub()
pub.subscribe(channel_name)
if _type == 0:
# 订阅消息
for item in pub.listen():
print("Listen on channel: %s" % item)
if item["type"] == "message" and item["data"].decode() == "over":
print(item["channel"].decode(), "已停止发布")
break
else:
# 另一种订阅模式
while True:
item = pub.parse_response()
print("Listen on channel: %s" % item)
if item[0].decode() == "message" and item[2].decode() == "over":
print(item[1].decode(), "已停止发布")
break
# 取消订阅
pub.unsubscribe()
return
if __name__ == '__main__':
if sys.argv[1] == "public":
public_test()
else:
subscribe_test(int(sys.argv[2]))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化