没有使用具有部分属性的golang&m; mgo查找文档

时间:2015-04-23 07:38:07

标签: mongodb go attributes partial mgo

我试图删除一堆具有公共属性的文档。这就是文档的样子:

{
    _id : {
        attr1 : 'foo',
        attr2 : 'bar'
    },
    attr3 : 'baz',
}

不止一个文档会有相同的' foo' attr1条目中的值。我试图删除所有这些。为此,我得到了类似的东西:

type DocId struct {
    Attr1 string `bson:"attr1,omitempty"`
    Attr2 string `bson:"attr2,omitempty"`
}

type Doc struct {
    Id DocId `bson:"_id,omitempty"`
    Attr3 string `bson:"attr3,omitempty"`
}


doc := Doc{
    Id : DocId{ Attr1 : 'foo' },
}

collection := session.DB("db").C("collection")
collection.Remove(doc)

这里的问题是我在删除调用中遇到Not found错误。 你能在代码中看到奇怪的东西吗?

非常感谢!

1 个答案:

答案 0 :(得分:1)

这只是MongoDB处理完全匹配和部分匹配的方式的结果。可以使用mongo shell快速演示:

# Here are my documents
> db.docs.find()
{ "_id" : { "attr1" : "one", "attr2" : "two" }, "attr3" : "three" }
{ "_id" : { "attr1" : "four", "attr2" : "five" }, "attr3" : "six" }
{ "_id" : { "attr1" : "seven", "attr2" : "eight" }, "attr3" : "nine" }

# Test an exact match: it works fine
> db.docs.find({_id:{attr1:"one",attr2:"two"}})
{ "_id" : { "attr1" : "one", "attr2" : "two" }, "attr3" : "three" }

# Now let's remove attr2 from the query: nothing matches anymore,
# because MongoDB still thinks the query requires an exact match
> db.docs.find({_id:{attr1:"one"}})
... nothing returns ...

# And this is the proper way to query with a partial match: it now works fine.
> db.docs.find({"_id.attr1":"one"})
{ "_id" : { "attr1" : "one", "attr2" : "two" }, "attr3" : "three" }

您可以在documentation

中找到有关此主题的更多信息

在你的Go程序中,我建议使用以下行:

err = collection.Remove(bson.M{"_id.attr1": "foo"})

不要忘记在每次往返MongoDB后测试错误。