从几个小时开始,我试图在我的本地设置的 MongoDB 集合中添加批量数据,除了一个或多个键的唯一索引之外,所有的都设置好了:(
我用过这个:
ensureIndex({appid:1, userid:1}, {unique:true, dropDups:true, background:true})
然后这个(因为我猜出于某种原因,多键索引不起作用)
ensureIndex({userid:1}, {unique:true, dropDups:true, background:true})
使用上述行后,我尝试从 php 脚本中插入数百万行(通过 insert 和 batchInsert),并且每次都存在重复的用户 ID :'( 请在这方面指导我 :(