You will need to provide more specific information to get an answer to
that question. Namely, you will need to provide:
 1) How long "several seconds" is
 2) What is your view (or is it admin view)?
 3) What would satisfy "good" performance
 4) What do you see when you don't use the web server & do it from the
shell?

You are correct that multiple relationships will cause some amount of
extra work during initial creation - however this should be roughly
the same work as updating. It shouldn't be a great concern unless
there are lots of relationships being created. Look at the page source
to see how relationships might affect page load speed - you will at
least get an idea of how many objects are being hit.

HTH,
 -rob

On Apr 15, 12:54 pm, "Chris Moffitt" <[EMAIL PROTECTED]> wrote:
> I have a situation with a model that has multiple relationships to other
> models as described below:
>
> Contact (3-4 character fields)
> - FK to Organization (3-4 char fields)
> - Many to Many to Address (5-6 char fields)
> - Many to Many to Phone (3 fields)
> - Many to Many to Order
>
> During the checkout process, a person would enter basic contact
> information including their address and phone #'s.  When I attempt to
> create a new contact (First name, last name, email) and save it, the save
> opperation can take several seconds (running the development server with
> MySql). Subsequent changes to the contact are quick.  As I add the other
> items and associate them to the contact, speed is just fine.  Any other
> database updates or changes seem fast enough.  It seems to be localized
> saving a new object.  I am not overriding the save function or doing
> anything else out of the ordinary.
>
> I'm suspecting I'm doing something wrong in my db design or in my  Django
> code.  I believe that the multiple relationships are causing some amount
> of extra work during initial creation.
>
> Does anyone have any pointers to ways of improving the time to save a new
> object?
>
> Thanks,
> Chris


--~--~---------~--~----~------------~-------~--~----~
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