Skip to content
This repository has been archived by the owner on Sep 28, 2021. It is now read-only.

Latest commit

 

History

History
29 lines (24 loc) · 663 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 663 Bytes

mersion

Retry Mongoose saves that suffer from conflicts via VersionErrors

const mongoose = require('mongoose')
const Mersion = require('mersion')

const Book = mongoose.model('Book', new Schema({
  title: String,
  tags: [String]
}))

(async () => {
  const mersion = new Mersion({
    loadFn: () => Book.findById(bookId),
    saveFn: (book) => {
      // mutating array has the possibility of causing a VersionError
      book.tags = ['fiction']
      return book.save()
    },
    retries: 2
  })

  // Calls `loadFn`, followed by `saveFn()`.
  // If a VersionError occurs, will retry `retries` times
  const savedBook = await mersion.save()
})()