gpt4 book ai didi

c# - 更新 Cosmos DB TTL 容器设置是否会对旧项目产生影响?

转载 作者:行者123 更新时间:2023-12-02 23:15:03 24 4
gpt4 key购买 nike

我使用此代码更新了我的 cosmos 数据库容器

var containerResponse = await _cosmosContainer.ReadContainerAsync();
var containerProperties = containerResponse.Resource;
if (containerProperties.DefaultTimeToLive == null)
{
containerProperties.DefaultTimeToLive = 60 * 60 * 24 * 180; // set 180 days default TTL
await _cosmosContainer.ReplaceContainerAsync(containerProperties);
}

更新 Cosmos DB TTL 容器设置是否会对旧项目产生影响?

最佳答案

来自docs ,

After you set the TTL at a container or at an item level, Azure CosmosDB will automatically remove these items after the time period, sincethe time they were last modified.

是的,它会影响旧项目。

关于c# - 更新 Cosmos DB TTL 容器设置是否会对旧项目产生影响?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71011389/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com