Tagged Questions

Django operator, that returns a queryset that follows and caches foreign key relationships, in order to avoid hitting the database in future calls that require use of foreign keys.

learn more… | top users | synonyms

3
votes
1answer
335 views

Django: Display many-to-many fields in the change list

Django doesn't support displaying of related objects from a many-to-many relation in the changelist for a good reason. It would result in a lot of database hits. But sometimes it is inevitable and ...
3
votes
4answers
2k views

A left outer reverse select_related in Django?

Imagine the following model: class Parent(Model): ... class Child(Model) father = ForeignKey(Parent) ... Some parents have children, others do not (they're not parents in the real ...
2
votes
2answers
174 views

Django select_related with fields specified breaks over multiple one to one relationships

I'm getting a weird error trying to select_related over multiple OneToOneField relationships, e.g. in the case where the target field is a grandchild subclass. I'd love someone to help me understand ...
2
votes
1answer
121 views

Django Query Related Field Count

I've got an app where users create pages. I want to run a simple DB query that returns how many users have created more than 2 pages. This is essentially what I want to do, but of course it's not the ...
2
votes
3answers
243 views

How can I get a total count of a model's related objects and the model's children's related objects?

In Django, I've got a Checkout model, which is a ticket for somebody checking out equipment. I've also got an OrganizationalUnit model that the Checkout model relates to (via ForeignKey), as the ...
2
votes
1answer
2k views

Django ORM - select_related and order_by with foreign keys

I have a simple music schema: Artist, Release, Track, and Song. The first 3 are all logical constructs while the fourth (Song) is a specific instance of an (Artist, Release, Track) as an mp3, wav, ...
2
votes
1answer
1k views

Django : select_related with ManyToManyField

I have : class Award(models.Model) : name = models.CharField(max_length=100, db_index=True) class Alias(models.Model) : awards = models.ManyToManyField('Award', through='Achiever') class ...
2
votes
2answers
2k views

django: select_related with entry_set

Should entry_set be cached with select_related? My DB is still getting calls even after I use select_related. The pertinent sections class Alias(models.Model): achievements = ...
1
vote
1answer
110 views

Django: select_related() and memory usage

I am working on an API, and I have a question. I was looking into the usage of select_related(), in order to save myself some database queries, and indeed it does help in reducing the amount of ...
1
vote
1answer
83 views

How can I mimic 'select_related' using google-appengine and django-nonrel?

django nonrel's documentation states: "you have to manually write code for merging the results of multiple queries (JOINs, select_related(), etc.)". Can someone point me to any snippets that ...
1
vote
1answer
235 views

django - dynamic select fields in forms

I have a model called picks that allows users to select an nfl team (from a static list). Whenever they choose a team, they can no longer choose that team again, so there selection choices are ...
1
vote
2answers
462 views

Need help using data from a Select_related() queryset

I'm working on a parts database, where every part number can also be an assembly, meaning it is composed of any number of other parts (and the loop can go on, subparts being made of even more parts, ...
1
vote
1answer
118 views

A tough relationship with Django

Take a look at this model (it's hypothetical): class Manufacturer(models.Model): #... class Car(models.Model): manufacturer = models.ForeignKey(Manufacturer) #... class ...
1
vote
3answers
262 views

Django hitting MySQL even after select_related()?

I'm trying to optimize the database calls coming from a fairly small Django app. At current I have a couple of models, Inquiry and InquiryStatus. When selecting all of the records from MySQL, I get ...
0
votes
1answer
88 views

Django select_related and field lookup

===Models=== class A(models.Model): name= models.CharField(max_length=20, blank=False) Class B(models.Model): university = models.CharField(max_length=25, blank=False) location = ...
0
votes
2answers
84 views

Django query with related models shows only fields of one model

I have three related models and want to make a query to get a combination of fields from all three models. invoice_select = Ordered_item.objects.filter(oi_order = o_id).select_related() ...
0
votes
0answers
144 views

Django select_related () does not return primary key id

When I query the database using select_related.get() the object returned does not seem to have the primary or foreign key id. I am able to access all other data from the table and the related tables. ...
0
votes
1answer
105 views

In Django, Can I `defer()` fields in an object that's being queried by `select_related()`

In my Django app I want to use select_related() on a QuerySet to "follow" a ForeignKey field, but I only need to access a few of the fields on the "followed" model instance. Can I use the defer() ...