Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到我们可以通过简单地指定字段名称来添加索引:
library(mongolite) m <- mongo() m$index("field")
我们如何指定唯一索引?IE:
db.members.createIndex( { "field": 1 }, { unique: true } )