0

我正在使用 java 在 DynamoDB 中插入和检索记录。

插入代码

                    Item item_to_insert = new Item().withPrimaryKey("LatLong", key,"location_code",key)
                        .withJSON("location_address", jsonW.toString())
                        .withString("version","1");
                PutItemOutcome outcome = table.putItem(item_to_insert);
              

检索

                GetItemSpec i_spec = new GetItemSpec()
                        .withPrimaryKey("LatLong", key,"location_code",key)
                        .withProjectionExpression("location_address")
                        .withConsistentRead(true);

现在我想只使用作为分区键的 LatLong 属性来检索记录。任何想法如何做到这一点?

4

1 回答 1

1

GetItem 获取特定项目,这需要您指定完整的主键。如果您想使用公共分区键检索所有项目,我相信您正在寻找的方法是 Query 方法。

在此处查看更多信息:https ://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryingJavaDocumentAPI.html

代码看起来像这样:

QuerySpec spec = new QuerySpec()
    .withKeyConditionExpression("Id = :v_id")
    .withValueMap(new ValueMap()
    .withString(":v_id", "Amazon DynamoDB#DynamoDB Thread 1"));
于 2020-10-05T06:11:11.053 回答