Redis pub sub 和 ttl
有没有办法让 Redis 中的“已发布”消息过期?
我需要这个,因为根据我的理解,任何发布的消息都会被放入队列中,直到有订阅者为止。在这种情况下,如果没有订阅者,即使数据可能变得无用,我也会存储数据。
Is there a way so that I expire a "published" message in redis?
I need this because, as per my understanding, any published message will be put in a queue till there is a subscriber. In such a case if there is no subscriber, I am storing the data even after it may have become useless.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
发布的消息永远不会存储在 redis 中。 Redis PUB/SUB
Published message never store in redis. Redis PUB/SUB
需要考虑的另一件事是:您始终可以在消息的字符串表示形式中添加时间戳。然后,即使消费者收到消息但没有按时处理它,它也可以忽略它。
另外,正如 Ganesh 提到的,pubsub 队列不存储消息。
One more thing to think about is: you can always add a timestamp inside your messages' string representation. Then, even if a consumer gets a message but doesn't process it on time, it can ignore it.
Also, as Ganesh mentioned the pubsub queue doesn't store messages.