MongoDB 没有像 SQL 一样有自动增长的功能, MongoDB 的 _id 是系统自动生成的12字节唯一标识。但在某些情况下,我们可能需要实现 ObjectId 自动增长功能。由于 MongoDB 没有实现这个功能,我们可以通过编程的方式来实现,以下我们将在 counters 集合中实现_id字段自动增长。
期望_id字段从1,2,3,4到n,启动一个自动递增的整数序列,如:
{ "_id":1, "title": "标题", "content": "内容1", "type": "类型" }
为此,创建 counters 集合,序列字段值可以实现自动长:
db.createCollection("counters")
初始化集合,以objId作为主键,sequence_value 字段是序列通过自动增长后的一个值:
db.counters.insert({_id:"objId",sequence_value:0})
查询返回更新后的序列号
db.counters.findAndModify({ query: {_id: "objId" }, update: {$inc:{sequence_value:1}}, new: true }).sequence_value;
操作符解释:
$inc可以对文档的某个值为数字型(只能为满足要求的数字)的键进行增减的操作;
db.collection.findAndModify({ query: <document>, //定义关于哪些记录需要修改的选择标准 sort: <document>, //确定选择标准检索多个文档时应修改的文档 new: <boolean>, //表示将显示修改后的文档 fields: <document>, //指定要返回的字段集 upsert: <boolean> //如果选择标准无法检索文档,则创建一个新文档 remove: <boolean> //为true,query指定的文档将从数据库中删除 )}
创建测试集合sms:
db.createCollection("sms")
在sms集合中新增文档,实现_id自增长:
db.sms.insert({ _id: db.counters.findAndModify({query:{_id: "objId" },update: {$inc:{sequence_value:1}},"new":true}).sequence_value, title: "标题1", content: "短信1", type: "1" })
查询sms集合:
db.sms.find({}).sort({_id:1})
java实现以上功能,数据库驱动版本不同运行效果有差异,仅供参考:
private MongoDatabase conn; static{ this.conn = getDatabase(databaseName); } /** * 连接数据库 * @param databaseName 数据库名称 * @return 数据库连接对象 */ private static MongoDatabase getDatabase(databaseName){ MongoDatabase mongoDatabase = null; try{ // 连接到 mongodb 服务 MongoClient mongoClient = new MongoClient( "localhost" , 27017 ); // 连接到数据库 MongoDatabase mongoDatabase = mongoClient.getDatabase(databaseName); System.out.println("Connect to database successfully"); }catch(Exception e){ System.err.println( e.getClass().getName() + ": " + e.getMessage() ); } return mongoDatabase; } /** * 获取最新序列号 * @return 序列号 */ private static int getNextSequenceValue(){ DBCollection collection = conn.getCollection("counters"); DBObject query = new BasicDBObject("_id", new BasicDBObject("$eq", "objId")); DBObject newDocument =new BasicDBObject(); newDocument.put("$inc", new BasicDBObject().append("sequence_value", 1)); newDocument.put("new": true); DBObject ret = collection.findAndModify(query, newDocument); if (ret == null){ return 0; }else{ return (Integer)ret.get("sequence_value"); } } /** * 新增集合文档 */ public static void addSms(){ int id = getNextSequenceValue(); if(id != 0){ DBCollection collection = conn.getCollection("sms"); List<Document> documents = new ArrayList<Document>(); for(int i = 0; i < 20; i++){ int id = getNextSequenceValue(); Document document = new Document("_id", id). append("title", "标题" + i). append("content", "短信" + i). append("type", 1); documents.add(document); } collection.insertMany(documents); System.out.println("文档插入成功"); } } /** * 查询集合 */ public static void findSms(){ DBCollection collection = conn.getCollection("sms"); FindIterable<Document> findIterable = collection.find(); MongoCursor<Document> mongoCursor = findIterable.iterator(); while(mongoCursor.hasNext()){ System.out.println(mongoCursor.next()); } }
有了字段自增长功能,可以实现订单流水号、编码的流水号等功能,可以实现同MySQL自增字段、Oracle序列的相同效果。
到此这篇关于mongodb字段值自增长实现的文章就介绍到这了,更多相关mongodb字段值自增长内容请搜索小牛知识库以前的文章或继续浏览下面的相关文章希望大家以后多多支持小牛知识库!
主要内容:使用 counters 集合,创建 Javascript 函数,使用 Javascript 函数MongoDB 中没有像 SQL 中那样可以赋予某个字段自动递增的功能,默认情况下 MongoDB 的 _id 字段是系统自动生成的 12 字节的唯一标识,但是在某些情况下我们可能需要在 MongoDB 的某个字段上实现类似 SQL 中的自动递增功能。 因为 MongoDB 中没有实现这个功能,所以我们需要通过编程的方式来实现。本节中我们将通过两个集合(counters 和 tutorial
本文向大家介绍Python+MongoDB自增键值的简单实现,包括了Python+MongoDB自增键值的简单实现的使用技巧和注意事项,需要的朋友参考一下 背景 最近在写一个测试工具箱,里面有一个bug记录系统,因为后台我是用Django和MongoDB来实现的,就遇到了一个问题,要如何实现一个自增的字段。 传统的关系型数据库要实现起来是非常容易,只要直接设置一个自增字段就行了,插入数据时不用管这
字段自增 const flow = await this.ctx.model.Flow.findOne({ where: { art_id } }); await flow.increment('index', { by: 900 }); 字段自减 const flow = await this.ctx.model.Flow.findOne({ where: { art_id } }); awai
本文向大家介绍MyBatis获取插入记录的自增长字段值(ID),包括了MyBatis获取插入记录的自增长字段值(ID)的使用技巧和注意事项,需要的朋友参考一下 第一步: 在Mybatis Mapper文件中添加属性“useGeneratedKeys”和“keyProperty”,其中keyProperty是Java对象的属性名! 第二步: Mybatis执行完插入语句后,自动将自增
有很多数据库都支持自增类型字段,但在插入数据时,同时获得自增字段的值是比较麻烦的。但如果使用JDBC,就非常容易做到这一点。 在Statement接口中提供了一个getGeneratedKeys方法,可以获得最近一次插入数据后自增字段的值。getGeneratedKeys()方法的定义如下: ResultSet getGeneratedKeys() throws SQLException; get
本文向大家介绍使用vbscript生成36进制自动增长序号的实现代码,包括了使用vbscript生成36进制自动增长序号的实现代码的使用技巧和注意事项,需要的朋友参考一下 asp生成0~9,a~z的36进制字符串,运行下面示例需要使用IE核心的浏览器,其他非IE核心浏览器不支持vbscript。 实现代码: