Skip to content

Instantly share code, notes, and snippets.

@martinsam
Created December 23, 2010 13:43
Show Gist options
  • Select an option

  • Save martinsam/752985 to your computer and use it in GitHub Desktop.

Select an option

Save martinsam/752985 to your computer and use it in GitHub Desktop.
Django Foreign Key Perf
Don’t do:
pub_id = b.publisher.id
Do do:
pub_id = b.publisher_id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment