gpt4 book ai didi

python - Boto3:有没有办法使用 dynamodb 的哈希范围键批量获取项目?

转载 作者:行者123 更新时间:2023-11-28 19:09:12 24 4
gpt4 key购买 nike

我从他们的文档中看到您可以对单个项目进行 batch_get_item

http://boto3.readthedocs.io/en/latest/reference/services/dynamodb.html#DynamoDB.Client.batch_get_item

但我不太确定如何从具有散列范围键的表中获取项目。特别是批量获取只有哈希值的项目,这可能吗?

最佳答案

你可以按照这个代码:

dynamodb = boto3.resource('dynamodb')
r = dynamodb.batch_get_item(RequestItems={
'TABLE_NAME': {
'Keys': [
{
'myPrimaryKey': "123",
'mySortKey': "65894"
},
{
'myPrimaryKey': "123",
'mySortKey': "65004"
},
{
'myPrimaryKey': "123",
'mySortKey': "69654"
}
],
},
})

print(r["Responses"]["TABLE_NAME"])
print(r["UnprocessedKeys"])

关于python - Boto3:有没有办法使用 dynamodb 的哈希范围键批量获取项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42728333/

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