Create unique autoincrement field with mongoose [duplicate] Create unique autoincrement field with mongoose [duplicate] mongoose mongoose

Create unique autoincrement field with mongoose [duplicate]


const ModelIncrementSchema = new Schema({    model: { type: String, required: true, index: { unique: true } },    idx: { type: Number, default: 0 }});ModelIncrementSchema.statics.getNextId = async function(modelName, callback) {    let incr = await this.findOne({ model: modelName });    if (!incr) incr = await new this({ model: modelName }).save();    incr.idx++;    incr.save();    return incr.idx;};const PageSchema = new Schema({    id: { type: Number ,  default: 0},    title: { type: String },    description: { type: String }});PageSchema.pre('save', async function(next) {    if (this.isNew) {        const id = await ModelIncrement.getNextId('Page');        this.id = id; // Incremented        next();    } else {        next();    }});


Yes, here's the "skinny" on that feature.

You need to have that collection in your mongo database. It acts as concurrent key allocation single record of truth if you want. Mongo's example shows you how to perform an "atomic" operation to get the next key and ensure that even there are concurrent requests you will be guaranteed to have the unique key returned without collisions.

But, mongodb doesn't implement that mechanism natively, they show you how to do it. They only provide for the _id to be used as unique document key. I hope this clarifies your approach.

To expand on the idea, go ahead and add that mongo suggested implementation to your defined Mongoose model and as you already guessed, use it in Pre-save or better yet pre-init event to ensure you always generate an id if you work with a collection server side before you save it to mongo.


You can use this.This package every time generate unique value for this.

Package Name : uniqid

Link : https://www.npmjs.com/package/uniqid