gpt4 book ai didi

.net - 如何使用 DynamoDBContext 批处理结果

转载 作者:行者123 更新时间:2023-12-02 17:47:37 26 4
gpt4 key购买 nike

我正在使用 DynamoDB .NET 对象持久化模型来扫描具有以下条件的表。

public IEnumerable<Product> GetProducts(string attribute1Value, string attribute2Value
{
IEnumerable<Product> products = null;
try
{
RegionEndpoint region = RegionEndpoint.GetBySystemName("us-east-1");
AmazonDynamoDB client = new AmazonDynamoDBClient(account.AwsAccessKey, account.AwsSecretKey, region);

DynamoDBContext context = new DynamoDBContext(client);
products = context.Scan<Product>(
new ScanCondition("attribute1", ScanOperator.Equal, attribute1Value),
new ScanCondition("attribute2", ScanOperator.Equal, attribute2Value));

}
catch (AmazonServiceException ase)
{
log.Error("Amazon Service Exception, Message: " + ase.Message + ", request id: " + ase.RequestId);
}
catch (Exception e)
{
log.Error("Exception: " + e.Message);
}
return products;
}

当我使用 DynamoDBContext 时超过 DynamoDB 设置的 1 MB 限制时如何处理输出?谢谢

最佳答案

如果您达到 1MB 的限制,DynamoDB 将返回多页项目。 DynamoDBContext.Scan 操作将自动对您的结果集进行分页(延迟加载)。因此,从您的角度来看,无需执行任何额外操作,只需枚举 IEnumerable 对象即可返回所有匹配项。

关于.net - 如何使用 DynamoDBContext 批处理结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12747829/

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