In my Django app very often I need to do something similar to get_or_create(). E.g.,

User submits a tag. Need to see if that tag already is in the database. If not, create a new record for it. If it is, just update the existing record.

But looking into the doc for get_or_create() it looks like it's not threadsafe. Thread A checks and finds Record X does not exist. Then Thread B checks and finds that Record X does not exist. Now both Thread A and Thread B will create a new Record X.

This must be a very common situation. How do I handle it in a threadsafe way?

link|improve this question

1  
One of the two threads will get a duplicate record error and an exception. There won't be duplicate data. – S.Lott Jul 5 '11 at 17:33
feedback

1 Answer

up vote 5 down vote accepted

This must be a very common situation. How do I handle it in a threadsafe way?

Yes.

The "standard" solution in SQL is to simply attempt to create the record. If it works, that's good. Keep going.

If an attempt to create a record gets a "duplicate" exception from the RDBMS, then do a SELECT and keep going.

Django, however, has an ORM layer, with it's own cache. So the logic is inverted to make the common case work directly and quickly and the uncommon case (the duplicate) raise a rare exception.

link|improve this answer
I've experienced duplicate entries in a postgres database that should have been unique when I was using get_or_create in a view method that was getting concurrent requests, I think this is a valid concern. – A Lee Jul 5 '11 at 18:35
@A Lee: With unique index constraints correctly defined, a duplicate should not be possible. How were you able to circumvent the unique index constraint? – S.Lott Jul 5 '11 at 18:54
Ah, that would've fixed the issue now that I think about it more clearly. The get_or_create used multiple fields and I moved it to a different execution path instead of leaving it in the view and adding a unique constraint across the multiple model fields. – A Lee Jul 6 '11 at 4:14
@A Lee: You can still fix it. – S.Lott Jul 6 '11 at 10:27
@S.Lott: so when get_or_create attempts to create a record gets a "duplicate" exception, does it automatically try to "get" the record instead? Or do I have to do that in my code? What type of exception would Django throw in that case? I don't see any "duplicate" exception in django.core.exceptions.py – Continuation Jul 6 '11 at 18:47
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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