On Wed, Jan 28, 2009 at 5:41 PM, Tipan <t...@ortengo.co.uk> wrote:

>
> We're running several Django sites on 3 dedicated servers with (1 app,
> 1 media and 1 data). The sites generally run pretty quickly for users.
> We are using db caching (we'll be moving to mem_cached in due course)
> on most views other than those showing specific user data. The site
> has about 90,000 registered users and we're adding about 500/day.
>
> One of the issues we've seen recently is the Django Admin interface
> has slowed significantly to the point that it can take several minutes
> to load up a specific record. This is causing major productivity
> issues for the content team.
>

What is on this specific record?  What are the queries the admin has to
issue to produce this page?  Is it for a model that contains a ForeignKey to
another model whose table has grown to many thousands of records, making
creation of the select box dropdown for the field very expensive (in which
case specifying this as a raw id field would help)?

I think you will need to provide a bit more detail about the problematic
page if you expect any really useful help from the list.

Karen

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