MongoDB 4.0中不提供事务支持。若要获得类似的结果,请使用findOneDupdate()。
让我们创建一个包含文档的集合-
> db.demo404.insertOne({"FirstName":"John"}); { "acknowledged" : true, "insertedId" : ObjectId("5e6f8c38fac4d418a0178592") } > db.demo404.insertOne({"FirstName":"Robert"}); { "acknowledged" : true, "insertedId" : ObjectId("5e6f8c3cfac4d418a0178593") } > db.demo404.insertOne({"FirstName":"Mike"}); { "acknowledged" : true, "insertedId" : ObjectId("5e6f8c40fac4d418a0178594") }
在find()方法的帮助下显示集合中的所有文档-
> db.demo404.find();
这将产生以下输出-
{ "_id" : ObjectId("5e6f8c38fac4d418a0178592"), "FirstName" : "John" } { "_id" : ObjectId("5e6f8c3cfac4d418a0178593"), "FirstName" : "Robert" } { "_id" : ObjectId("5e6f8c40fac4d418a0178594"), "FirstName" : "Mike" }
以下是使用findOneAndUpdate并在MongoDB中设置锁定的查询-
> result=db.demo404.findOneAndUpdate({"in_transaction": {"$exists": false}}, {"$set": {"in_transaction": true}});
这将产生以下输出-
{ "_id" : ObjectId("5e6f8c38fac4d418a0178592"), "FirstName" : "John" }