草庐IT

mongodb - mongodb 是否能够索引空值?

我有一个帖子,我想将其字段postStatus设置为truefalse或null。我想知道mongo是否能够索引空值。此外,如果我选择执行null、true和false与使用-1,0,1(或任何3个整数)有什么不同吗?谢谢 最佳答案 null的索引是的,null值被索引了,如果您尝试将第二个null值添加到唯一索引中,就可以证明这一点:connectingto:test>db.idxtest.createIndex({a:1},{unique:true}){"createdCollectionAutomatically":true,