我正在使用 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 属性来检索记录。任何想法如何做到这一点?