我有很多由 url 索引的文档。我像这样在 pymongo 的 url 上创建了一个索引
coll.create_index('url',unique=True,background=True) //coll is the name of the collection
但我仍然可以插入具有重复 url 的文档。
我从 mongo shell 检查了索引是否确实存在,它显示了这个
{
"v" : 1,
"key" : {
"url" : 1
},
"ns" : "dbname.coll",
"name" : "url_1",
"background" : true
},
设置是否background=True
也意味着url
插入文档时不会检查的唯一性?我完全困惑为什么唯一性不起作用?