Skip to content

Instantly share code, notes, and snippets.

@MatMoore
Created June 23, 2025 10:56
Show Gist options
  • Save MatMoore/3e655600546c45b77902699eebf3cd70 to your computer and use it in GitHub Desktop.
Save MatMoore/3e655600546c45b77902699eebf3cd70 to your computer and use it in GitHub Desktop.
Django vs Rails eager loading
Rails Django Description
preload prefetch_related one query per table
eager_load select_related one query with joins
includes N/A same as preload if associated table not references, otherwise eager_load
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment