db.bug.save({
_id:1,
test:[
,
,
,
{cid:4, cond:400, weight:5} ]
});
db.bug.find().pretty();
{
"_id" : 1,
"test" : [
,
,
,
{ "cid" : 4, "cond" : 400, "weight" : 5 } ]
}
db.bug.update(
{"test.cid":3}, {$inc:{"test.$.weight":1}});
db.bug.find().pretty();
{
"_id" : 1,
"test" : [
,
,
,
{ "cid" : 4, "cond" : 400, "weight" : 5 } ]
}
db.bug.update({"test.cid":3, "test.cond": {$gt:150}}, {$inc:{"test.$.weight":1}});
db.bug.find().pretty()
{
"_id" : 1,
"test" : [
,
{
"cid" : 2, //<< Not satisfy condition! ("test.cid":3)...
"cond" : 200, //<< Satisfies the condition! ("test.cond": {$gt:150})...
"weight" : 6 //<< Increase is this correct?...
},
{
"cid" : 3, //<< Satisfies the condition! ("test.cid":3)...
"cond" : 300, //<< Satisfies the condition! ("test.cond": {$gt:150})...
"weight" : 6 //<< No increase
},
]
}
db.bug.update({"test.cid":1, "test.cond": {$gt:150}}, {$inc:{"test.$.weight":1}});
db.bug.find().pretty()
{
"_id" : 1,
"test" : [
{
"cid" : 1, //<< Not satisfy condition! ("test.cid":1)...
"cond" : 100, //<< No Match condition ("test.cond": {$gt:150})...
"weight" : 5 //<< No increase
},
{
"cid" : 2, //<< Not satisfy condition! ("test.cid":1)...
"cond" : 200, //<< Satisfies the condition! ("test.cond": {$gt:150})...
"weight" : 7 //<< Increase is this correct?...
},
,
{ "cid" : 4, "cond" : 400, "weight" : 5 } ]
}