gpt4 book ai didi

amazon-web-services - AWS DynamoDB - 如果设置存在,如何在 1 次调用中实现 : Add value to set, - 或者使用值实例化设置?

转载 作者:行者123 更新时间:2023-12-03 15:59:11 25 4
gpt4 key购买 nike

我有一个用户表,有一个名为 friend 的属性,它将是一组用户所有 friend 的 id。
最初,我尝试在创建用户时将friends 属性实例化为空集,但我收到一个错误,提示您不能拥有空属性。
因此,如果有人还没有 friend ,我能找到的唯一解决方案是读取用户的属性,如果它不存在,则将属性设置为与他们添加的 friend 一起设置的 [新] 集。如果确实存在,则只需使用 ADD 执行更新,将新 friend 添加到集合中。
我不想为此两次调用 AWS。
有没有办法在集合不存在的情况下创建它,如果存在,则将其添加到其中 - 只需 1 次调用?

最佳答案

对于 SET 数据类型(来自 DynamoDB API Reference ):

ADD - If the attribute does not already exist, then the attribute and its values are added to the item. If the attribute does exist,then the behavior of ADD depends on the data type of the attribute:

If the existing data type is a set, and if the Value is also a set,then the Value is added to the existing set. (This is a set operation,not mathematical addition.) For example, if the attribute value wasthe set [1,2], and the ADD action specified [3], then the finalattribute value would be [1,2,3]. An error occurs if an Add action isspecified for a set attribute and the attribute type specified doesnot match the existing set type. Both sets must have the sameprimitive data type. For example, if the existing data type is a setof strings, the Value must also be a set of strings. The same holdstrue for number sets and binary sets.


示例:-
第一次更新:- country表中不存在属性。 updateItem创建了新属性 country提供的值(IN,UK)。
var params = {
TableName : "Movies",
Key : {
"yearkey" : 2014,
"title" : "The Big New Movie 2"
},
UpdateExpression : "ADD country :countries",
ExpressionAttributeValues: {
':countries': docClient.createSet(["IN", "UK"])
},
ReturnValues : "UPDATED_NEW"
};
第二次更新:-
这次 updateItem添加了新值“US”并忽略了现有值“IN”。
var params = {
TableName : "Movies",
Key : {
"yearkey" : 2014,
"title" : "The Big New Movie 2"
},
UpdateExpression : "ADD country :countries",
ExpressionAttributeValues: {
':countries': docClient.createSet(["IN", "US"])
},
ReturnValues : "UPDATED_NEW"
};

关于amazon-web-services - AWS DynamoDB - 如果设置存在,如何在 1 次调用中实现 : Add value to set, - 或者使用值实例化设置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42103263/

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