Opened 15 years ago

Closed 15 years ago

#11547 closed (wontfix)

Delete all takes a lot of time

Reported by: jonathan.livni@… Owned by: nobody
Component: Uncategorized Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

SomeObject.objects.all().delete() takes a very long time.
I'm working with a remote MySQL server, and my internet connection isn't great, but I thought this operation shouldn't take that long. There are only ~500 rows in the table. Does django download all the objects and only then send the delete?!

Change History (1)

comment:1 by Alex Gaynor, 15 years ago

Resolution: wontfix
Status: newclosed

Django emulates CASCADE on delete behavior for deletes.

Note: See TracTickets for help on using tickets.
Back to Top