Azure 表存储过期

发布于 2024-12-29 08:32:56 字数 91 浏览 1 评论 0原文

有没有办法从 Azure 表存储中删除项目,而无需创建要根据时间戳删除的工作人员? 我想要一些像 Azure 缓存服务这样的解决方案,我们可以在其中指定消息的时间跨度。

Is there any way to delete items from Azure Table storage without creating a worker to delete based on timestamp ?
I want some solution like in Azure cache service where we can specify time span for the message.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

一桥轻雨一伞开 2025-01-05 08:32:56

表存储是持久存储,行实体没有到期日期。提交的写入会保留在存储中,直到您将其删除。您需要某种类型的计划任务来根据时间戳或其他元数据定期清理数据。

Table Storage is a durable store, and row entities don't have an expiration date. A committed write stays in storage until you delete it. You'd need some type of scheduled task to periodically clean out data based on timestamp or other metadata.

烟雨扶苏 2025-01-05 08:32:56

例如,您可以每周创建一个新表并删除 n-2 个旧表。并且总是写入第n个表

You can create a new table every week for example and delete n-2 old tables. And always write to the nth table

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