我正在编写一个应用程序来将消息发布到Redis中的通道并处理它们。这是一个长期存在的应用程序,从来没有基本上听过频道。
def msg_handler():
r = redis.client.StrictRedis(host='localhost', port=6379, db=0)
sub = r.pubsub()
sub.subscribe(settings.REDIS_CHANNEL)
while True:
msg = sub.get_message()
if msg:
if msg['type'] == 'message':
print(msg)
def main():
for i in range(3):
t = threading.Thread(target=msg_handler, name='worker-%s' % i)
print('thread {}'.format(i))
t.setDaemon(True)
t.start()
while True:
print('Waiting')
time.sleep(1)
当我运行此程序时,我注意到在程序启动之前没有收到发布到通道的消息。在应用订阅频道后,它可以将消息发送到频道。
在制作中,很可能在节目开始前频道中有一些消息。有没有办法得到这些旧消息?
答案 0 :(得分:1)
Redis PUB / SUB不存储已发布的消息。它将它们发送给当前正在收听的人。如果您需要访问旧邮件,可以: