Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-3440

Add $setOnInsert command

    • Type: Icon: New Feature New Feature
    • Resolution: Duplicate
    • Priority: Icon: Minor - P4 Minor - P4
    • None
    • Affects Version/s: None
    • Component/s: 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 Unassigned
            Reporter:
            rn@deftlabs.com Ryan Nitz
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: