Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use mongodb on my site.When I try to run "findAndModify‬" function I always get that doc is 'undefined':

function counter(name) {
    var doc = this.db.collection('counter').findAndModify(
                { query: { _id: name }, 
                  update: { $inc: { next: 1} }, 
                  new: true, 
                  upsert: true });

    return doc.next;
}

Q: What am I missing?

share|improve this question
What release of MongoDB are you running currently and with what driver? What are your results if you try this through the shell? – Bill Mar 11 '12 at 14:17
I use 2.0.3 .If I check in shell it works – user541847 Mar 12 '12 at 15:36

1 Answer

You not missed anything, with upsert equal to true findAndModify should always return document.. Even if no matches by query.

But, there is limitations with sharding and findAndModify -- your query should always contains shard key, mb this is an issue.

Also this command available for mongodb that has version >= 1.3. If you use old mongodb, just update it to latest release (2.0.3) and it should work. (I've tested on 1.8 and 2.0)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.