我可以删除 Windows Azure 表存储中的整个分区吗?
我在分区中有一组行,代表一些缓存的数据。我想刷新该缓存而不关心已经存在的内容。是否可以删除整个分区而无需执行任何选择?
I have a set of rows in a partition that represents some cached data. I want to refresh that cache without any concern for what is already there. Is it possible to delete an entire partition without having to do any selects?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,但您可以通过一次调用删除整个表,因此您可以考虑将分区改为单独的表。 (但是,当然,您不能进行跨表查询。)
No, but you can delete an entire table with one call, so you might consider making your partitions separate tables instead. (But, of course, you can't do cross-table queries.)