Redis pub sub 和 ttl

发布于 2024-12-09 14:16:52 字数 115 浏览 3 评论 0原文

有没有办法让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

记忆で 2024-12-16 14:16:52

发布的消息永远不会存储在 redis 中。 Redis PUB/SUB

Published message never store in redis. Redis PUB/SUB

相守太难 2024-12-16 14:16:52

需要考虑的另一件事是:您始终可以在消息的字符串表示形式中添加时间戳。然后,即使消费者收到消息但没有按时处理它,它也可以忽略它。

另外,正如 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文