MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Mongoose supporta il metodo `findAndModify` di Mongodb?

La funzione non è ben documentata (leggi:per niente), ma dopo aver letto il codice sorgente, ho trovato la seguente soluzione.

Crea il tuo schema di raccolta.

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

Crea un metodo statico sullo schema che esporrà il metodo findAndModify della raccolta del modello.

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

Crea il tuo modello.

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

Trova e modifica!

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);