> cursor.execute("delete from app_country where name = %s", (name,))
> cursor.execute("insert into app_country (name) values (%s)", (name,))
>
> this is 5x faster than work with ORM.
1. Replace it with single update statement.
2. Do you use transactions? Like
django.db.transaction.commit_on_success decoreator for your view
--~--~---------~--~----~------------~-------~--~----~
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