假设我有一个带有嵌入式关注者数组属性的用户表。
{
"followers": [
"bar"
] ,
"name": "foo" ,
}
在rethinkDb中,为该关注者属性添加用户名的最佳方法是什么。即为用户添加关注者。
在mongodb中,我将使用addToSet命令为嵌入式数组添加唯一值。我应该使用合并命令吗?
答案 0 :(得分:1)
RethinkDB有一个setInsert
命令。你可以写table.get(ID).update({followers: r.row('followers').setInsert(FOLLOWER)})
。