La fonctionnalité n'est pas bien (lire :du tout) documentée, mais après avoir lu le code source, j'ai trouvé la solution suivante.
Créez votre schéma de collection.
var Counters = new Schema({
_id: String,
next: Number
});
Créez une méthode statique sur le schéma qui exposera la méthode findAndModify de la collection du modèle.
Counters.statics.findAndModify = function (query, sort, doc, options, callback) {
return this.collection.findAndModify(query, sort, doc, options, callback);
};
Créez votre modèle.
var Counter = mongoose.model('counters', Counters);
Recherchez et modifiez !
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);