On 5/1/07, Brandon Low <[EMAIL PROTECTED]> wrote:
>
> my model is very simple:
>
> class Referrer(models.Model):
>     url = models.CharField(maxlength=255, unique=True)
>
> here is the relevent view code:
>
>     referrer = request.META.get('HTTP_REFERER','-')
>     r, r_new = Referrer.objects.get_or_create(url=referrer)

The only other option I can think of is that you are using a MySQL
storage engine that doesn't support transactions (or running in
autocommit mode)  and so you are getting a sort of race condition
where two requests come in about the same time, both do a SELECT and
see there is no matching row, and one gets it INSERTed first. Normally
I would expect to see the IntegrityError at the commit phase.
-- 
Patriotism means to stand by the country. It does
not mean to stand by the president. -- T. Roosevelt

This message has been scanned for memes and
dangerous content by MindScanner, and is
believed to be unclean.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to