{ "_id":1, "tutorials_name": "MongoDB 教程", "url": "http://www.lmcjl.com/mongodb/index.html", "author": "编程帮" }为此,我们需要创建一个 counters 集合,并使用该集合来实现自动递增的功能:
> db.createCollection("counters") { "ok" : 1 }我们将在 counters 集合中插入以下文档:
> db.counters.insert({_id:"productid",sequence_value:0}) WriteResult({ "nInserted" : 1 })其中 _id 字段的值为 productid,sequence_value 字段的值默认为零,用来保存自动增长后的一个值。
> function getNextSequenceValue(sequenceName){ ... var sequenceDocument = db.counters.findAndModify( ... { ... query:{_id: sequenceName }, ... update: {$inc:{sequence_value:1}}, ... "new":true ... }); ... return sequenceDocument.sequence_value; ... }
> db.tutorials.insert({ ... "_id":getNextSequenceValue("productid"), ... "tutorials_name": "MongoDB 教程", ... "url": "http://www.lmcjl.com/mongodb/index.html", ... "author": "编程帮" ... }) WriteResult({ "nInserted" : 1 }) > db.tutorials.insert({ ... "_id":getNextSequenceValue("productid"), ... "tutorials_name": "HTML 教程", ... "url": "http://www.lmcjl.com/html/index.html", ... "author": "编程帮" ... }) WriteResult({ "nInserted" : 1 })数据插入完成后,我们可以使用 find() 方法来查询一下该集合中的数据,以验证我们是否使用 getNextSequenceValue() 函数成功的为集合中的 _id 字段设置自动递增功能:
> db.tutorials.find().pretty() { "_id" : 1, "tutorials_name" : "MongoDB 教程", "url" : "http://www.lmcjl.com/mongodb/index.html", "author" : "编程帮" } { "_id" : 2, "tutorials_name" : "HTML 教程", "url" : "http://www.lmcjl.com/html/index.html", "author" : "编程帮" }
本文链接:http://task.lmcjl.com/news/17706.html