如何在nedb中使用自动增量字段?

时间:2016-05-29 09:12:00

标签: node.js nedb nosql

我想要有关系数据库或客观数据库的完全自动增量字段,所以我需要一个带有自动设置字段值的整数_id字段,值应该是这样的最后一个记录_id值:

数据:

{_id:1,name"foo"}
{_id:2,name"bar"}

删除最后一条记录:

{_id:1,name"foo"}

添加新记录:

{_id:1,name"foo"}
{_id:3,name"newbar"}

我在我的数据存储区添加了一个函数并计算了_id的最大值并加上1 max(_id)+1并设置为字段值,但这里有问题:

当我们在关系数据库中使用自动增量字段时,它就像我说的那样工作,并且在remove last record之后它保留了一个已删除的记录号,并且新插入的记录继续递增但是以我的方式它表示删除记录的_id新记录。

我的代码是:

var Datastore = require('nedb'),
localDb = new Datastore({
    filename: __dirname + '/dbFilePath.db',
    autoload: true
});

localDb.getMax = function(fieldName, onFind){
   db.find({}).sort({_id:-1}).limit(1).exec(function (err, docs) {onFind && onFind(err, docs['_id']);});
   return localDb;
}

localDb.insertAutoId = function(data, onAdd){
    var newIndex = 0;
    localDb.getMax(function (err, maxValue) {
        newIndex = maxValue+1;

        if(!data["_id"])
            data["_id"] = newIndex;

        localDb.insert(data, function (err, newDoc) {
            onAdd && onAdd(err, newDoc);
        });
    });
    return localDb;
}

3 个答案:

答案 0 :(得分:3)

nedb 的改进答案是:

db.getAutoincrementId = function (cb) {
    this.update(
        { _id: '__autoid__' },
        { $inc: { seq: 1 } },
        { upsert: true, returnUpdatedDocs: true },
        function (err, affected, autoid) { 
            cb && cb(err, autoid.seq);
        }
    );
    return this;
};

这相当于 mongodb 方式:

db.getAutoincrementId = function (cb) {
    this.findAndModify({
            query: { _id: '__autoid__' },
            update: { $inc: { seq: 1 } },
            new: true
        }
        function (err, autoid) { 
            cb && cb(err, autoid.seq);
        }
    );
    return this;
};

答案 1 :(得分:2)

您可以在数据库中存储索引的最后一个值。像这样:

var Datastore = require('nedb');
var db = new Datastore({ 
  filename: __dirname + '/dbFilePath.db', 
  autoload: true 
});

// Initialize the initial index value
// (if it already exists in the database, it is not overwritten)
db.insert({_id: '__autoid__', value: -1});

db.getAutoId = function(onFind) {
  db.findOne( { _id: '__autoid__' }, function(err, doc) {
    if (err) {
      onFind && onFind(err)
    } else {
      // Update and returns the index value
      db.update({ _id: '__autoid__'}, { $set: {value: ++doc.value} }, {},
         function(err, count) {
           onFind && onFind(err, doc.value);
      });
    }
  });
  return db;
}

答案 2 :(得分:1)

我不知道它是否会对你有用我使用数据库来存储下一个id,灵感来自mysql系统。谁总是保留下一个身份证。 所以我创建了一个函数,用于验证db是否有id,如果没有,则添加值“1”,当它更新时查找,如果它存在并执行序列。 这让我完全控制了我的ID。 架构将是:

{
name: nameDb,
nextId: itemID
}

如果您愿意,可以创建更新文档,版本控制等功能

示例:

db.autoincrement = new Datastore({filename: 'data/autoincrement.db', autoload: true});

function getUniqueId(nameDb, cb) {
    db.autoincrement.findOne({name: nameDb}, function (err, doc) {
        if (err) {
            throw err;
        } else {
            if (doc) {
                const itemID = doc.nextId + 1;
                db.autoincrement.update({name: nameDb}, {
                    name: nameDb,
                    nextId: itemID
                }, {}, function (err, numReplaced) {
                    db.autoincrement.persistence.compactDatafile();
                    if (err) {
                        throw err;
                    } else {
                        // console.log(numReplaced);
                    }
                    cb(doc.nextId);
                });
            } else {
                const data = {
                    name: nameDb,
                    nextId: 2
                };

                db.autoincrement.insert(data, function (err, newDoc) {
                    if (err) {
                        throw err;
                    } else {
                        // console.log(newDoc);
                    }
                    cb(1);
                });
            }
        }

    });
}

插入新文档示例:

       function insert(req, cb) {
        getUniqueId("testdb", function (uniqueId) {
            data.itemId = uniqueId;

            db.testdb.insert(data, function (err, newDoc) {
                if (err) {
                    cb({error: '1', message: 'error#2'});
                    throw err;
                }
                cb({error: '0', message: 'Item add'});
            });

        });
       }