An easy Django ForeignKey performance +1


Today, Christophe Pettus wrote about an easy way to get better database performance from a ForeignKey reference.

Don’t do:

pub_id = b.publisher.id

Do do:

pub_id = b.publisher_id

After you read his post, you’ll think, “But of course!” Joe Bob says check it out.

One thought on “An easy Django ForeignKey performance +1

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.