Thanks Russ

On Mar 23, 10:33 am, Russell Keith-Magee <freakboy3...@gmail.com>
wrote:
> On Tue, Mar 23, 2010 at 10:21 PM, jrs <j...@framemedia.com> wrote:
>
> > On Mar 23, 10:05 am, "ge...@aquarianhouse.com"
> > <ge...@aquarianhouse.com> wrote:
> >> Filter would be better :)
>
> >> Container.objects.filter(
> >>           pk=container_id
> >>      ).delete()
>

Reasons I see that makes get() a better option-

1)  There will always be one record returned as it's a join on a
primary key
2)  For reasons unknown to me, the overridden model delete method is
not fired for a filter, instead the 581 queries are executed.

The recommendation to avoid web requests for long-chain deletes, most
of the time, makes no sense.  There are frequently valid cases of long-
chain deletes being basic to web requests.

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

Reply via email to