MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Unterstützt Mongoose die „findAndModify“-Methode von Mongodb?

Das Feature ist nicht gut (sprich:überhaupt) dokumentiert, aber nachdem ich den Quellcode durchgelesen hatte, kam ich auf die folgende Lösung.

Erstellen Sie Ihr Sammlungsschema.

var Counters = new Schema({
  _id: String,
  next: Number     
});

Erstellen Sie eine statische Methode für das Schema, die die Methode findAndModify der Sammlung des Modells verfügbar macht.

Counters.statics.findAndModify = function (query, sort, doc, options, callback) {
  return this.collection.findAndModify(query, sort, doc, options, callback);
};

Erstellen Sie Ihr Modell.

var Counter = mongoose.model('counters', Counters);

Suchen und ändern!

Counter.findAndModify({ _id: 'messagetransaction' }, [], { $inc: { next: 1 } }, {}, function (err, counter) {
  if (err) throw err;
  console.log('updated, counter is ' + counter.next);
});

Bonus

Counters.statics.increment = function (counter, callback) {
  return this.collection.findAndModify({ _id: counter }, [], { $inc: { next: 1 } }, callback);
};

Counter.increment('messagetransaction', callback);