I have an object Message which is only ever created by this line:

Message.find_or_create_by(:api_id => params['message_id'])

In theory, I should never have two messages with the same api_id, but... I do. It happens when two requests happen simultaneously that both call that line.

Someone else has posted the same problem with ActiveRecord: Duplicate Records created by find_or_create_by_ But I am using Mongoid.

How do I go about solving this?

link|improve this question

1  
AR doing it wrong is one thing. Mongoid is specifically designed on top of MongoDB and should use perfectly atomic upserts for this. No option to move to using the driver directly? – Remon van Vliet Sep 20 '11 at 16:42
@Remon van Vliet ...yes – tybro0103 Sep 21 '11 at 15:00
feedback

1 Answer

up vote 1 down vote accepted

Found a solution using upserts:

Message.collection.update({:api_id => params['message_id']}, {'$set' => {:api_id => params['message_id']}}, :upsert => true)
@message = Message.where(:api_id => params['message_id']).first

Feels a little messy, but works. Still open to alternatives.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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