Add $setOnInsert command

XMLWordPrintableJSON

    • Type: New Feature
    • Resolution: Duplicate
    • Priority: Minor - P4
    • None
    • Affects Version/s: None
    • Component/s: None
    • None
    • None
    • 3
    • None
    • None
    • None
    • None
    • None
    • None

      The upsert feature in Mongo is incredibly useful, but it often results in a lot of redundant $set operations when used in conjunction with counters/increment.

      This would be incredibly handy:

      toSetOnInsert = { }
      toSetOnInsert['name'] = 'test'

      toInc = { }
      toInc['foo'] = 1

      vals= { }
      vals['$setOnInsert'] = toSetOnInsert
      vals['$inc'] = toInc

      db.foo.update({_id: "foo"}, vals, true, false);

            Assignee:
            Unassigned
            Reporter:
            Ryan Nitz
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: