我尝试使用 2dsphere 唯一索引将地理点插入 mongodb,但它会引发许多重复键错误。
一个简单的重现演示:
> version()
2.4.5
> use geo
> db.test.ensureIndex( { loc : "2dsphere" }, unique=true )
> db.test.insert({"loc" : { "type" : "Point", "coordinates" : [ 113.3736642, 23.04469194 ] }})
> db.test.insert({"loc" : { "type" : "Point", "coordinates" : [ 113.3734775, 23.04609556 ] }})
E11000 duplicate key error index: geo.test.$loc_2dsphere dup key: { : "1f22000102222113" }
为什么这些完全不同的点会引发重复键错误?
更新:
我尝试了其他测试,它似乎与准确性有关。
> db.test.ensureIndex( { loc : "2dsphere" }, unique=true )
> db.test.insert({"loc" : { "type" : "Point", "coordinates" : [ 113.373, 23.044 ] }})
> db.test.insert({"loc" : { "type" : "Point", "coordinates" : [ 113.373, 23.045 ] }})
E11000 duplicate key error index: geo.test.$loc_2dsphere dup key: { : "1f22000102222113" }
> db.test.insert({"loc" : { "type" : "Point", "coordinates" : [ 113.373, 23.046 ] }})
E11000 duplicate key error index: geo.test.$loc_2dsphere dup key: { : "1f22000102222113" }
> db.test.insert({"loc" : { "type" : "Point", "coordinates" : [ 113.373, 23.047 ] }})
E11000 duplicate key error index: geo.test.$loc_2dsphere dup key: { : "1f22000102222113" }
> db.test.insert({"loc" : { "type" : "Point", "coordinates" : [ 113.373, 23.048 ] }})
E11000 duplicate key error index: geo.test.$loc_2dsphere dup key: { : "1f22000102222113" }
> db.test.insert({"loc" : { "type" : "Point", "coordinates" : [ 113.373, 23.049 ] }})
在此测试中 23.045 到 23.048 失败,只有 23.044 23.049 成功。