- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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/
在我的应用程序中,我使用亚马逊对象持久性模型并使用 DynamoDBContext 进行操作(CURD 和执行查询)。我需要知道如何使用 DynamoDBContext 进行条件更新。它应该是异步的。
我知道AmazonDynamoDBClient是线程安全的,我可以在我的应用程序启动时初始化一个单例,并在整个应用程序生命周期中继续使用它。 是否同样适用于 DynamoDBContext ? 最佳答
我正在使用 DynamoDB .NET 对象持久化模型来扫描具有以下条件的表。 public IEnumerable GetProducts(string attribute1Value, strin
我正在使用 DynamoDB .NET 对象持久化模型来扫描具有以下条件的表。 public IEnumerable GetProducts(string attribute1Value, strin
我们需要能够根据构建环境设置表名。考虑以下类: [DynamoDBTable("movies")] public class Movie { [DynamoDBHashKey] pub
我有一个 dynamoDB 表,其架构如下: var request = new CreateTableRequest { TableName = tableName, KeySche
目前正在为我的类(class)开发一个 Web 服务项目,并决定使用 .NET Core 和 DynamodDB 制作一个 Web API。 我只是好奇注入(inject) DynamoDBConte
我在我的开发机器上创建了一个 DynamoDb 表,我正在尝试使用 CreateBatchWrite 从我的 .NET Core 应用程序中插入几行。 DynamoDBContext的方法|目的。我能
我是一名优秀的程序员,十分优秀!