在rethinkdb中是否有等效的mongo addToSet命令?

时间:2015-12-09 23:44:19

标签: rethinkdb

假设我有一个带有嵌入式关注者数组属性的用户表。

{
  "followers": [
    "bar"
   ] ,
  "name":  "foo" ,
} 

在rethinkDb中,为该关注者属性添加用户名的最佳方法是什么。即为用户添加关注者。

在mongodb中,我将使用addToSet命令为嵌入式数组添加唯一值。我应该使用合并命令吗?

1 个答案:

答案 0 :(得分:1)

RethinkDB有一个setInsert命令。你可以写table.get(ID).update({followers: r.row('followers').setInsert(FOLLOWER)})