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.
Is there any way to delete items from Azure Table storage without creating a
Share
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.